From b36153dd435246a0c84e21352f44f8dca12b18d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=BE=E8=82=83?= <15833576927@163.com> Date: Fri, 17 May 2024 17:31:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=88=86=E9=9A=94=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E3=80=81=E4=BC=98=E5=8C=96=E5=B7=A6=E4=BE=A7=E5=BC=B9?= =?UTF-8?q?=E7=AA=97=E5=B1=82=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Hamburger/index.vue | 3 +-- src/components/LeftDrawer/index.vue | 9 ++++++++- src/components/titleDivider/index.vue | 24 ++++++++++++++++++++++++ src/layout/components/Navbar.vue | 2 +- src/main.js | 2 ++ 5 files changed, 36 insertions(+), 4 deletions(-) create mode 100644 src/components/titleDivider/index.vue diff --git a/src/components/Hamburger/index.vue b/src/components/Hamburger/index.vue index 8800639..602fa78 100644 --- a/src/components/Hamburger/index.vue +++ b/src/components/Hamburger/index.vue @@ -3,7 +3,7 @@
- +
@@ -68,7 +68,6 @@ const emit = defineEmits(['toggleClick']) const showDrawer = ref(false) const permissionStore = usePermissionStore() const appStore = useAppStore() -const drawerWidth= computed(()=>appStore.device === 'mobile'?'100%':'30%') const sidebarRouters = computed(() => permissionStore.sidebarRouters); const menuList = ref([ { diff --git a/src/components/LeftDrawer/index.vue b/src/components/LeftDrawer/index.vue index af5144d..784d83e 100644 --- a/src/components/LeftDrawer/index.vue +++ b/src/components/LeftDrawer/index.vue @@ -1,4 +1,6 @@