feat: add mobile dropdown page and search

This commit is contained in:
Tim
2025-07-21 09:15:54 +08:00
parent 8c253f5a60
commit 7a59f413b5
5 changed files with 263 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
import { reactive } from 'vue'
const stores = reactive({})
export function registerDropdownStore(id, store) {
stores[id] = store
}
export function getDropdownStore(id) {
return stores[id]
}
export function removeDropdownStore(id) {
delete stores[id]
}