perf: 优化导出导入
This commit is contained in:
17
apps/web-antd/src/views/crm/customer/index.ts
Normal file
17
apps/web-antd/src/views/crm/customer/index.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { defineAsyncComponent } from 'vue';
|
||||
|
||||
export const CustomerDetailsInfo = defineAsyncComponent(
|
||||
() => import('./modules/detail-info.vue'),
|
||||
);
|
||||
|
||||
export const CustomerForm = defineAsyncComponent(
|
||||
() => import('./modules/form.vue'),
|
||||
);
|
||||
|
||||
export const CustomerDetails = defineAsyncComponent(
|
||||
() => import('./modules/detail.vue'),
|
||||
);
|
||||
|
||||
export const DistributeForm = defineAsyncComponent(
|
||||
() => import('./poolConfig/distribute-form.vue'),
|
||||
);
|
||||
Reference in New Issue
Block a user