From 7af83db7f0e80c03e78db388b802168847ded436 Mon Sep 17 00:00:00 2001 From: haoxr <1490493387@qq.com> Date: Tue, 17 Jan 2023 23:20:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9A=97=E9=BB=91=E6=A8=A1=E5=BC=8F?= =?UTF-8?q?=E8=87=AA=E5=AE=9A=E4=B9=89=E6=A0=B7=E5=BC=8F=E7=BB=9F=E4=B8=80?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc-auto-import.json | 1 + index.html | 29 +-- src/components/Hamburger/index.vue | 7 +- src/components/IconSelect/index.vue | 2 +- src/layout/components/Settings/index.vue | 7 +- src/layout/components/Sidebar/index.vue | 5 +- src/layout/components/TagsView/index.vue | 40 +++- src/layout/index.vue | 11 +- src/styles/dark.scss | 20 +- .../{element-plus.scss => element.scss} | 0 src/styles/global.scss | 23 +++ src/styles/index.scss | 21 +- src/styles/mixin.scss | 14 -- src/styles/reset.scss | 4 - src/styles/sidebar.scss | 42 ++-- src/styles/ts-variables.module.scss | 6 + src/styles/variables.module.scss | 20 +- src/types/auto-imports.d.ts | 2 + src/views/dashboard/components/Team/index.vue | 189 +++++++++--------- src/views/dashboard/index.vue | 39 ++-- vite.config.ts | 17 +- 21 files changed, 256 insertions(+), 243 deletions(-) rename src/styles/{element-plus.scss => element.scss} (100%) create mode 100644 src/styles/global.scss delete mode 100644 src/styles/mixin.scss delete mode 100644 src/styles/reset.scss create mode 100644 src/styles/ts-variables.module.scss diff --git a/.eslintrc-auto-import.json b/.eslintrc-auto-import.json index 0d99f35..7349931 100644 --- a/.eslintrc-auto-import.json +++ b/.eslintrc-auto-import.json @@ -107,6 +107,7 @@ "useArrayMap": true, "useArrayReduce": true, "useArraySome": true, + "useArrayUnique": true, "useAsyncQueue": true, "useAsyncState": true, "useAttrs": true, diff --git a/index.html b/index.html index efe1a8a..74ae187 100644 --- a/index.html +++ b/index.html @@ -1,15 +1,18 @@ - - - - - - - vue3-element-admin - - -
- - - + + + + + + + + vue3-element-admin + + + +
+ + + + \ No newline at end of file diff --git a/src/components/Hamburger/index.vue b/src/components/Hamburger/index.vue index 24d1f49..1e34583 100644 --- a/src/components/Hamburger/index.vue +++ b/src/components/Hamburger/index.vue @@ -1,13 +1,14 @@