explorer-app/composables/useNavigation.ts

10 lines
166 B
TypeScript

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