mirror of
https://github.com/iczer/vue-antd-admin.git
synced 2025-04-06 03:57:44 +08:00
11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
import VueI18nPlugin from '@/plugins/i18n-extend'
|
|
import AuthorityPlugin from '@/plugins/authority-plugin'
|
|
|
|
const Plugins = {
|
|
install: function (Vue) {
|
|
Vue.use(VueI18nPlugin)
|
|
Vue.use(AuthorityPlugin)
|
|
}
|
|
}
|
|
export default Plugins
|