diff --git a/gui/src/layout/AppLayout.vue b/gui/src/layout/AppLayout.vue index a86baf28..6ec0b031 100644 --- a/gui/src/layout/AppLayout.vue +++ b/gui/src/layout/AppLayout.vue @@ -22,6 +22,9 @@ watch(isSidebarActive, (newVal) => { } }); +const app = computed(() => { + return store.getters['notice/app']; +}); const mobileLeftbar = computed(() => { return store.getters['account/mobileLeftbar']; }); @@ -74,6 +77,8 @@ const isMobile = computed(() => windowWidth.value<=768); const toggleLeft = () => { store.commit('account/setMobileLeftbar', false); } +const windowHeight = ref(window.innerHeight); +const viewHeight = computed(() => windowHeight.value - 0);