forked from FoundKeyGang/FoundKey
fix 'assignment to const' error
This commit is contained in:
parent
5e0f9699ab
commit
29ef7c85d0
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ const XWidgets = defineAsyncComponent(() => import('./classic.widgets.vue'));
|
|||
|
||||
const DESKTOP_THRESHOLD = 1100;
|
||||
|
||||
const isDesktop = ref(window.innerWidth >= DESKTOP_THRESHOLD);
|
||||
let isDesktop = $ref(window.innerWidth >= DESKTOP_THRESHOLD);
|
||||
|
||||
let pageMetadata = $ref<null | ComputedRef<PageMetadata>>();
|
||||
const widgetsShowing = $ref(false);
|
||||
|
|
Loading…
Reference in a new issue