From fc420ad4eb645a7f9489531add997930604f4f26 Mon Sep 17 00:00:00 2001 From: youzi <2410633923@qq.com> Date: Tue, 23 Dec 2025 15:35:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=99=BB=E5=BD=95=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=EF=BC=8C=E4=BC=98=E5=8C=96=E5=AF=BC=E8=88=AA=E9=80=BB?= =?UTF-8?q?=E8=BE=91=EF=BC=8C=E6=9B=B4=E6=96=B0=E8=B7=AF=E7=94=B1=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E5=A3=B0=E6=98=8E=EF=BC=8C=E8=B0=83=E6=95=B4=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E5=92=8C=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components.d.ts | 7 ++- src/App.vue | 3 - src/Index.vue | 14 +---- src/{views => components}/Login.vue | 95 +++++++++++++---------------- src/components/menuH.vue | 61 ++++++++++-------- src/views/Home.vue | 27 ++++---- typed-router.d.ts | 5 -- 7 files changed, 97 insertions(+), 115 deletions(-) rename src/{views => components}/Login.vue (56%) diff --git a/components.d.ts b/components.d.ts index c786e6f..a2317e0 100644 --- a/components.d.ts +++ b/components.d.ts @@ -12,11 +12,15 @@ declare module 'vue' { DAside: typeof import('vue-devui/layout/index.es.js')['Aside'] DAvatar: typeof import('vue-devui/avatar/index.es.js')['Avatar'] DButton: typeof import('vue-devui/button/index.es.js')['Button'] + DButtonGroup: typeof import('vue-devui/button-group/index.es.js')['ButtonGroup'] DCard: typeof import('vue-devui/card/index.es.js')['Card'] DContent: typeof import('vue-devui/layout/index.es.js')['Content'] + DDropdown: typeof import('vue-devui/dropdown/index.es.js')['Dropdown'] + DDropdownItem: typeof import('vue-devui/dropdown-item/index.es.js')['DropdownItem'] DFooter: typeof import('vue-devui/layout/index.es.js')['Footer'] DForm: typeof import('vue-devui/form/index.es.js')['Form'] DFormItem: typeof import('vue-devui/form/index.es.js')['FormItem'] + DHeader: typeof import('vue-devui/layout/index.es.js')['Header'] DIcon: typeof import('vue-devui/icon/index.es.js')['Icon'] DInput: typeof import('vue-devui/input/index.es.js')['Input'] DLayout: typeof import('vue-devui/layout/index.es.js')['Layout'] @@ -29,9 +33,8 @@ declare module 'vue' { DTab: typeof import('vue-devui/tabs/index.es.js')['Tab'] DTabs: typeof import('vue-devui/tabs/index.es.js')['Tabs'] DTag: typeof import('vue-devui/tag/index.es.js')['Tag'] - DTagGroup: typeof import('vue-devui/tag-group/index.es.js')['TagGroup'] - DTags: typeof import('vue-devui/tags/index.es.js')['Tags'] HomeSide: typeof import('./src/components/homeSide.vue')['default'] + Login: typeof import('./src/components/Login.vue')['default'] MenuH: typeof import('./src/components/menuH.vue')['default'] RouterLink: typeof import('vue-router')['RouterLink'] RouterView: typeof import('vue-router')['RouterView'] diff --git a/src/App.vue b/src/App.vue index 2f462b8..4c27895 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,10 +1,7 @@