chore(client): tweak deck

This commit is contained in:
syuilo 2022-07-05 15:55:55 +09:00
parent 4f0878e267
commit 135dfa8026
3 changed files with 7 additions and 15 deletions

View file

@ -79,12 +79,14 @@ import { i18n } from '@/i18n';
import { mainRouter } from '@/router';
const XStatusBars = defineAsyncComponent(() => import('@/ui/_common_/statusbars.vue'));
if (deckStore.state.navWindow) {
mainRouter.navHook = (path) => {
mainRouter.navHook = (path): boolean => {
const noMainColumn = !deckStore.state.columns.some(x => x.type === 'main');
if (deckStore.state.navWindow || noMainColumn) {
os.pageWindow(path);
return true;
};
}
}
return false;
};
const isMobile = ref(window.innerWidth <= 500);
window.addEventListener('resize', () => {