From a28e0ee44c15f9fe2c04e37f7fb086b54206d23a Mon Sep 17 00:00:00 2001 From: xiebing Date: Wed, 24 Dec 2025 16:38:44 +0800 Subject: [PATCH] fix --- components/AppLayout/AppLayout.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/components/AppLayout/AppLayout.vue b/components/AppLayout/AppLayout.vue index 4aea266..b3c64a2 100644 --- a/components/AppLayout/AppLayout.vue +++ b/components/AppLayout/AppLayout.vue @@ -6,7 +6,7 @@ > @@ -88,9 +88,13 @@ defineProps({ type: Boolean, default: true, }, + showHeader: { + type: Boolean, + default: false, + }, }); -const showHeader = computed(()=>{ +const defaultShow = computed(()=>{ return isMiniProgram.value })