Vue-based select component
npm install vue-multiple-select> Vue-based select component
``bash`
npm install vue-multiple-select -S
`bash
import Vue from 'vue'
import {VmSelect, VmOption, VmSelectDropdown, VmOptionGroup} from 'vue-multiple-select'
Vue.component(VmSelect.name, VmSelect)
Vue.component(VmOption.name, VmOption)
Vue.component(VmSelectDropdown.name, VmSelectDropdown)
Vue.component(VmOptionGroup.name, VmOptionGroup)
``
ORbash
import Vue from 'vue'
import VmSelect from 'vue-multiple-select'
Vue.use(VmSelect)
`
For more information, please refer to select in our documentation.
` bashinstall dependencies
npm install