Explorar el Código

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

xuyunhui hace 1 semana
padre
commit
2a491a0933
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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
   }
 )