From d71fd44a8a95697fe986abee7bf6e6499d435587 Mon Sep 17 00:00:00 2001 From: Leo <98382335+gaoziman@users.noreply.github.com> Date: Mon, 7 Jul 2025 15:52:37 +0800 Subject: [PATCH] =?UTF-8?q?refactor(component):=20=E9=87=8D=E5=91=BD?= =?UTF-8?q?=E5=90=8D=E7=BB=84=E4=BB=B6=E5=89=8D=E7=BC=80=E4=BB=8ENova?= =?UTF-8?q?=E5=88=B0Coi?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 重命名 NovaIcon 组件为 CoiIcon - 重命名 NovaEmpty 组件为 CoiEmpty - 重命名 NovaDialog 组件为 CoiDialog - 更新组件内部命名规范,包括CSS类名、事件名和方法名 - 保持组件功能和API不变,仅调整命名规范 BREAKING CHANGE: 组件名称变更需要更新导入和使用方式 --- .../common/{NovaDialog.vue => CoiDialog.vue} | 72 +++++---- .../common/{NovaEmpty.vue => CoiEmpty.vue} | 148 +++++++++--------- .../common/{NovaIcon.vue => CoiIcon.vue} | 0 3 files changed, 117 insertions(+), 103 deletions(-) rename src/components/common/{NovaDialog.vue => CoiDialog.vue} (76%) rename src/components/common/{NovaEmpty.vue => CoiEmpty.vue} (77%) rename src/components/common/{NovaIcon.vue => CoiIcon.vue} (100%) diff --git a/src/components/common/NovaDialog.vue b/src/components/common/CoiDialog.vue similarity index 76% rename from src/components/common/NovaDialog.vue rename to src/components/common/CoiDialog.vue index 7350ea9..7fc8a1b 100644 --- a/src/components/common/NovaDialog.vue +++ b/src/components/common/CoiDialog.vue @@ -1,8 +1,8 @@