@affino/combobox-vue
v0.1.0
Published
Vue adapter for @affino/combobox-core
Downloads
54
Maintainers
Readme
@affino/combobox-vue
Vue 3 store helpers for the @affino/combobox-core package.
Install
pnpm add @affino/combobox-vueUsage
import { createComboboxStore, useComboboxStore } from "@affino/combobox-vue"
const store = createComboboxStore({
context: {
optionCount: 10,
mode: "single",
loop: true,
disabled: false,
isDisabled: () => false,
},
})
const { state } = useComboboxStore(store)
store.setFilter("alpha")