feat:【antd】【crm】将 defineAsyncComponent 调整成 export

This commit is contained in:
YunaiV
2025-09-30 15:24:00 +08:00
parent 0d07db46f0
commit 0f6868febf
7 changed files with 10 additions and 49 deletions

View File

@@ -1,9 +1,2 @@
import { defineAsyncComponent } from 'vue';
export const ProductDetailsList = defineAsyncComponent(
() => import('./detail-list.vue'),
);
export const ProductEditTable = defineAsyncComponent(
() => import('./edit-table.vue'),
);
export { default as ProductDetailsList } from './detail-list.vue';
export { default as ProductEditTable } from './edit-table.vue';