chore(client): fix #8858
This commit is contained in:
parent
30bdfde4cc
commit
a50b1d69a1
2 changed files with 12 additions and 0 deletions
|
@ -65,6 +65,13 @@ import { $i } from '@/account';
|
|||
import { i18n } from '@/i18n';
|
||||
import { mainRouter } from '@/router';
|
||||
|
||||
if (deckStore.state.navWindow) {
|
||||
mainRouter.navHook = (path) => {
|
||||
os.pageWindow(path);
|
||||
return true;
|
||||
};
|
||||
}
|
||||
|
||||
const isMobile = ref(window.innerWidth <= 500);
|
||||
window.addEventListener('resize', () => {
|
||||
isMobile.value = window.innerWidth <= 500;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue