From cdf43ea71a3e9cc42cca08cfcbd3f69ce7d7a88e Mon Sep 17 00:00:00 2001 From: "Ray.Hao" <1490493387@qq.com> Date: Thu, 2 Jul 2026 20:25:51 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=94=AF=E6=8C=81=E5=8F=8C=E5=88=97?= =?UTF-8?q?=E5=B8=83=E5=B1=80=E6=AC=A1=E7=BA=A7=E8=8F=9C=E5=8D=95=E6=8A=98?= =?UTF-8?q?=E5=8F=A0=E5=8F=8A=E4=B8=89=E6=A1=A3=E5=93=8D=E5=BA=94=E5=BC=8F?= =?UTF-8?q?=E6=96=AD=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/layouts/BaseLayout.vue | 16 ++++++- src/layouts/components/LayoutNavbar.vue | 24 +++++++--- src/layouts/components/LayoutSidebar.vue | 7 ++- src/layouts/composables/useLayoutDevice.ts | 13 +++-- src/layouts/modes/DoubleLayout.vue | 56 ++++++++++++++++++---- src/layouts/modes/MixLayout.vue | 32 +++++-------- src/stores/app.ts | 16 +++++++ src/styles/layout.scss | 6 ++- 9 files changed, 130 insertions(+), 42 deletions(-) diff --git a/package.json b/package.json index 0e4bb3dc..c4398c0d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vue3-element-admin", "description": "Vue3 + Vite + TypeScript + Element-Plus 的后台管理模板,vue-element-admin 的 Vue3 版本", - "version": "4.7.2", + "version": "4.7.3", "private": true, "type": "module", "scripts": { diff --git a/src/layouts/BaseLayout.vue b/src/layouts/BaseLayout.vue index df862e6c..250a0ab3 100644 --- a/src/layouts/BaseLayout.vue +++ b/src/layouts/BaseLayout.vue @@ -1,6 +1,10 @@