UNPKG

@angustrau/vue-bootstrap-select

Version:
71 lines (54 loc) 2.65 kB
[![AUR version](https://img.shields.io/npm/v/@angustrau/vue-bootstrap-select.svg)](https://github.com/angustrau/vue-bootstrap-select) [![npm bundle size (minified)](https://img.shields.io/bundlephobia/min/react.svg)](https://github.com/angustrau/vue-bootstrap-select) # @angustrau/vue-bootstrap-select A vue version of [bootstrap select](https://github.com/snapappointments/bootstrap-select/). Forked from [Sandalf/vue-bootstrap-select](https://github.com/Sandalf/vue-bootstrap-select). # Demo [![Edit Vue Bootstrap Select Demo](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/ovq821j566) # Install ```shell npm install @angustrau/vue-bootstrap-select --save ``` # Usage ```js import VSelect from '@angustrau/vue-bootstrap-select' export default { name: 'app', components: { VSelect }, data() { return { selectedValue: null }; } } ``` ```html <template> <div id="app"> <v-select :options="[{value: 1, text: 'Item 1'}, {value: 2, text: 'Item 2'}]" v-model="selectedValue" /> </div> </template> ``` ### Passing options The `options` prop accepts arrays of strings ```html <v-select :options="['Item 1', 'Item 2']" /> ``` And arrays of objects ```html <v-select :options="[{value: 1, text: 'Item 1'}, {value: 2, text: 'Item 2'}]" /> ``` ## Props | parameter | description | type | default | acceptable value | | -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------- | ------------ | ---------------- | | disabled | disables select | Boolean | false | | | disabledProp | allows to disable specific options. If an option has this prop set to a truthy value it will disable the option. | String | disabled | | | labelNotFound | text displayed when no option is found in the search results | String | No results matched || | labelSearchPlaceholder | placeholder text for search input | String | Search | | | options | list of options | Array | [] | | | searchable | display search input | Boolean | false | | | showDefaultOption | sets the select title is set as an option | Boolean | false | | | textProp | the option's prop that is displayed as the option's text | String | text | | | valueProp | the option's prop that is used to find the selected value | String | value | | limit | the maximum amount of items to display | Number | null |