diff options
author | 2023-05-28 23:13:24 +0200 | |
---|---|---|
committer | 2023-05-28 23:29:14 +0200 | |
commit | 33c9b6643f58a6930043f460d5bfdca4bc1f7222 (patch) | |
tree | f313935e30f7b90ea16e564e7171e2e72319ce29 /src/components/MenuLayout.vue | |
parent | 4d2b037dbe4e78aa90a4a6d9c7315dcf0a51fed9 (diff) | |
download | it-tools-33c9b6643f58a6930043f460d5bfdca4bc1f7222.tar.gz it-tools-33c9b6643f58a6930043f460d5bfdca4bc1f7222.tar.zst it-tools-33c9b6643f58a6930043f460d5bfdca4bc1f7222.zip |
chore(lint): switched to a better lint config
Diffstat (limited to 'src/components/MenuLayout.vue')
-rw-r--r-- | src/components/MenuLayout.vue | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/components/MenuLayout.vue b/src/components/MenuLayout.vue index 177de2b..5659cbd 100644 --- a/src/components/MenuLayout.vue +++ b/src/components/MenuLayout.vue @@ -1,3 +1,12 @@ +<script setup lang="ts"> +import { computed, toRefs } from 'vue'; +import { useStyleStore } from '@/stores/style.store'; + +const styleStore = useStyleStore(); +const { isMenuCollapsed, isSmallScreen } = toRefs(styleStore); +const siderPosition = computed(() => (isSmallScreen.value ? 'absolute' : 'static')); +</script> + <template> <n-layout has-sider> <n-layout-sider @@ -19,15 +28,6 @@ </n-layout> </template> -<script setup lang="ts"> -import { useStyleStore } from '@/stores/style.store'; -import { toRefs, computed } from 'vue'; - -const styleStore = useStyleStore(); -const { isMenuCollapsed, isSmallScreen } = toRefs(styleStore); -const siderPosition = computed(() => (isSmallScreen.value ? 'absolute' : 'static')); -</script> - <style lang="less" scoped> .overlay { position: absolute; |