From 985dca4990718e0a9b0a67debc73ff78cac5c18d Mon Sep 17 00:00:00 2001 From: YunaiV Date: Mon, 29 Sep 2025 09:16:44 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=E3=80=90antd=E3=80=91=E3=80=90crm?= =?UTF-8?q?=E3=80=91=E4=BC=98=E5=8C=96=E5=90=88=E5=90=8C=E7=9A=84=E6=95=B4?= =?UTF-8?q?=E4=BD=93=E4=BB=A3=E7=A0=81=E9=A3=8E=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-antd/src/views/crm/contract/components/index.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 apps/web-antd/src/views/crm/contract/components/index.ts diff --git a/apps/web-antd/src/views/crm/contract/components/index.ts b/apps/web-antd/src/views/crm/contract/components/index.ts new file mode 100644 index 00000000..44539478 --- /dev/null +++ b/apps/web-antd/src/views/crm/contract/components/index.ts @@ -0,0 +1,5 @@ +import { defineAsyncComponent } from 'vue'; + +export const ContractDetailsList = defineAsyncComponent( + () => import('./detail-list.vue'), +);