vue-vben-admin/src/components/Authority/index.ts

7 lines
223 B
TypeScript
Raw Normal View History

import { withInstall } from '../util';
2020-12-10 23:58:11 +08:00
import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent';
2020-12-10 23:58:11 +08:00
export const Authority = createAsyncComponent(() => import('./src/index.vue'));
2020-12-07 21:17:24 +08:00
2020-12-10 23:58:11 +08:00
withInstall(Authority);