mirror of
https://github.com/haexhub/haex-hub.git
synced 2025-12-16 14:10:52 +01:00
8 lines
121 B
TypeScript
8 lines
121 B
TypeScript
export const useSearchStore = defineStore('searchStore', () => {
|
|
const search = ref('')
|
|
|
|
return {
|
|
search,
|
|
}
|
|
})
|