explorer-app/composables/useNavigation.ts

10 lines
166 B
TypeScript
Raw Normal View History

2023-12-19 18:43:42 +01:00
export const useNavigaiton = defineStore('navigation', () => {
const showBar = ref(true)
const showText = ref(true)
return {
showBar,
showText,
}
})