global.js 289 字节
Newer Older
P
piexlmax 已提交
1 2 3 4 5 6 7 8 9 10 11
import config from './config'
import { emitter } from '@/utils/bus.js'

const closeThisPage = () => {
  emitter.emit('closeThisPage')
}

export const register = (app) => {
  app.config.globalProperties.$GIN_VUE_ADMIN = config
  app.config.globalProperties.$CloseThisPage = closeThisPage
}