import app_push from './app_push.js' const appPush = { install: function(Vue) { Vue.prototype.$appPush = function(op = {}) { console.log("进入appPush") new app_push({ ...op }).show(); } } } export default appPush