explorer-app/composables/useNavigation.ts
2023-12-19 18:43:42 +01:00

9 lines
166 B
TypeScript

export const useNavigaiton = defineStore('navigation', () => {
const showBar = ref(true)
const showText = ref(true)
return {
showBar,
showText,
}
})