Browse Source

fix(topbar): default showBack to false for tab pages

xuyunhui 1 week ago
parent
commit
2a491a0933
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/components/common/TopBar.vue

+ 1 - 1
src/components/common/TopBar.vue

@@ -32,7 +32,7 @@ const props = withDefaults(
     showBack?: boolean
   }>(),
   {
-    showBack: true
+    showBack: false
   }
 )