/// +---------------------------------------------------------------------- // | HTTP 全局监听口[监听远程执行之后] // +---------------------------------------------------------------------- // | Copyright (c) 2016-2017 ,Lioc All rights reserved. // +---------------------------------------------------------------------- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 ) // +---------------------------------------------------------------------- // | Author: Mr Table // +---------------------------------------------------------------------- import store from "../../store"; class After { app = null; constructor(http) { this.app = getApp(); } create() { //console.log(store.user); } } export default After;