Revert "feat: add mobile dropdown page and search"

This reverts commit 7a59f413b5.
This commit is contained in:
Tim
2025-07-21 10:34:38 +08:00
parent 06f9b77112
commit ff483b874a
5 changed files with 9 additions and 263 deletions

View File

@@ -1,15 +0,0 @@
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]
}