index.js 299 Bytes
Newer Older
wb-ct393452's avatar
wb-ct393452 committed
1 2 3 4 5 6 7 8 9 10 11 12
import VueI18nPlugin from './vueI18nPlugin'
import AuthorityPlugin from './authorityPlugin'
import TabsPagePlugin from './tabsPagePlugin'

const Plugins = {
  install: function (Vue) {
    Vue.use(VueI18nPlugin)
    Vue.use(AuthorityPlugin)
    Vue.use(TabsPagePlugin)
  }
}
export default Plugins;