vue-multi-select
This component gives you a multi/single select with the power of Vuejs components.
Dependencies
- required: Vuejs >= 2.x
Install
- Clone the repo or
npm install vue-multi-select --save
- Include the file in your app
import vueMultiSelect from 'vue-multi-select';
import 'vue-multi-select/dist/lib/vueMultiSelect.css'
Contributing
Issues and PR's are much appreciated.
When you create a new PR please make it against the develop branch when adding new features and to the fix branch when fixing small issues instead of master.
Usage and Documentation
Params | Type |
---|---|
options | Object |
filters | Array |
selectOptions | Array |
value | Array |
1. options (Contains options to set the multi-select)
Params | Type | Default | Description |
---|---|---|---|
btnLabel | String | 'multi-select' | Label on the button |
cssSelected | Function | (option) => option['selected'] ? { 'font-weight': 'bold',color: '#5755d9',} : '' | Css passed to value |
groups | Boolean | false | Display or not groups selection |
multi | Boolean | false | Set single or multiple selection |
labelList | String | 'list' | Name Attributes for list |
labelName | String | 'name' | Name Attributes for value to display |
labelSelected | String | 'selected' | Name attributes for value selected |
groupName | String | 'name' | Name Attributes for groups to display |