implemented search

This commit is contained in:
2025-06-19 14:47:42 +02:00
parent 62ddc33290
commit 25f63d30be
24 changed files with 604 additions and 175 deletions

View File

@ -0,0 +1,7 @@
export const useSearchStore = defineStore('searchStore', () => {
const search = ref()
return {
search,
}
})