4
0
mirror of https://github.com/iczer/vue-antd-admin.git synced 2025-06-23 21:59:15 +08:00
iczer c10ea64ba7 feat: add the api of global closing page: $closePage(closeRoute, nextRoute);🌟
新增:增加全局关闭页面api: $closePage(closeRoute, nextRoute);
2020-08-06 21:12:51 +08:00

13 lines
299 B
JavaScript

import VueI18nPlugin from './i18n-extend'
import AuthorityPlugin from './authority-plugin'
import TabsPagePlugin from './tabs-page-plugin'
const Plugins = {
install: function (Vue) {
Vue.use(VueI18nPlugin)
Vue.use(AuthorityPlugin)
Vue.use(TabsPagePlugin)
}
}
export default Plugins