mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
|
export const useNavigaiton = defineStore('navigation', () => {
|
||
|
const showBar = ref(true)
|
||
|
const showText = ref(true)
|
||
|
|
||
|
return {
|
||
|
showBar,
|
||
|
showText,
|
||
|
}
|
||
|
})
|