Parcourir la source

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

xuyunhui il y a 1 semaine
Parent
commit
2a491a0933
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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
   }
 )