fix (client): missing variables
This commit is contained in:
parent
71ebea0cd1
commit
28576b518a
1 changed files with 4 additions and 0 deletions
|
@ -110,6 +110,10 @@ provideMetadataReceiver((info) => {
|
|||
});
|
||||
|
||||
const root = computed(() => mainRouter.currentRoute.value?.name === "index");
|
||||
const showMenu = ref(false);
|
||||
const isDesktop = ref(window.innerWidth >= DESKTOP_THRESHOLD);
|
||||
const narrow = ref(window.innerWidth < 1280);
|
||||
const meta = ref();
|
||||
|
||||
os.api("meta", { detail: true }).then((res) => {
|
||||
meta.value = res;
|
||||
|
|
Loading…
Reference in a new issue