Blame view

src/components/Authority/index.ts 223 Bytes
1
import { withInstall } from '../util';
vben authored
2
import { createAsyncComponent } from '/@/utils/factory/createAsyncComponent';
3
vben authored
4
export const Authority = createAsyncComponent(() => import('./src/index.vue'));
vben authored
5
vben authored
6
withInstall(Authority);