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 })