Ver código fonte

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

xuyunhui 1 semana atrás
pai
commit
2a491a0933
1 arquivos alterados com 1 adições e 1 exclusões
  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
   }
 )