index.js 402 Bytes
Newer Older
1 2 3 4
import VueI18nPlugin from './vueI18nPlugin';
import AuthorityPlugin from './authorityPlugin';
import TabsPagePlugin from './tabsPagePlugin';
import { Table } from '@/components';
wb-ct393452's avatar
wb-ct393452 committed
5 6

const Plugins = {
7 8 9 10 11 12 13
    install: function(Vue) {
        Vue.use(VueI18nPlugin);
        Vue.use(AuthorityPlugin);
        Vue.use(TabsPagePlugin);
        Vue.component('my-table', Table);
    },
};
wb-ct393452's avatar
wb-ct393452 committed
14
export default Plugins;