refactor(projects): 重构browser tab初步

This commit is contained in:
Soybean
2021-09-23 19:47:40 +08:00
parent 22f8f3f014
commit 51b8603545
10 changed files with 370 additions and 206 deletions

View File

@@ -14,6 +14,8 @@ const app = useAppStore();
const theme = useThemeStore();
const title = useAppTitle();
const showTitle = computed(() => !app.menu.collapsed || !theme.isVerticalNav);
const showTitle = computed(
() => !theme.isVerticalNav || (!app.menu.collapsed && theme.navStyle.mode !== 'vertical-mix')
);
</script>
<style scoped></style>