| 12345678910111213141516 |
- import type { Ref } from "@vue/reactivity";
- export const useLayoutStore = defineStore('layout', () => {
- const isFooterVisible: Ref<boolean> = ref(false)
- const setIsFooterVisible = (value: boolean) => {
- isFooterVisible.value = value
- }
- return {
- isFooterVisible,
- setIsFooterVisible
- }
- })
|