Files
haex-hub-mirror/src/stores/vault/search.ts
2025-06-19 23:29:22 +02:00

8 lines
121 B
TypeScript

export const useSearchStore = defineStore('searchStore', () => {
const search = ref('')
return {
search,
}
})