All Projects → Sandalf → vue-bootstrap-select

Sandalf / vue-bootstrap-select

Licence: other
A vue version of bootstrap select

Programming Languages

Vue
7211 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to vue-bootstrap-select

React Native Dropdown Picker
A single / multiple, categorizable & searchable item picker (dropdown) component for react native which supports both Android & iOS.
Stars: ✭ 230 (+400%)
Mutual labels:  select
selectize-bootstrap4-theme
Selectize Theme for Bootstrap 4
Stars: ✭ 43 (-6.52%)
Mutual labels:  select
insect
🛠 Highly customisable, minimalistic input x select field for React.
Stars: ✭ 33 (-28.26%)
Mutual labels:  select
Jquery Flexselect
💪☑️ A jQuery plugin that turns regular select boxes into Quicksilver-like, flex-matching, incremental-finding controls.
Stars: ✭ 236 (+413.04%)
Mutual labels:  select
vue-tags-component
Vue.js 2+ tags component
Stars: ✭ 27 (-41.3%)
Mutual labels:  select
react-native-autocomplete-dropdown
Dropdown Item picker with search and autocomplete (typeahead) functionality for react native
Stars: ✭ 87 (+89.13%)
Mutual labels:  select
Angular2 Multiselect Dropdown
Angular 2 Dropdown Multiselect
Stars: ✭ 225 (+389.13%)
Mutual labels:  select
leaflet-area-select
Control to just select an area and provide bbox for it
Stars: ✭ 27 (-41.3%)
Mutual labels:  select
tagselector
Dependency-free JS library that turns select fields in customizable tag clouds
Stars: ✭ 19 (-58.7%)
Mutual labels:  select
craft-select2
Filter / search a <select> using the popular Select2 fieldtype for Craft CMS
Stars: ✭ 18 (-60.87%)
Mutual labels:  select
Ng Select
⭐ Native angular select component
Stars: ✭ 2,781 (+5945.65%)
Mutual labels:  select
vaadin-select
Customizable Web Component similar to a native browser select. Part of the Vaadin components.
Stars: ✭ 18 (-60.87%)
Mutual labels:  select
choc-autocomplete
🏇 Autocomplete Component Package for Chakra UI
Stars: ✭ 286 (+521.74%)
Mutual labels:  select
Tail.select
Create beautiful, functional and extensive (Multi) Select Fields with pure, vanilla JavaScript.
Stars: ✭ 235 (+410.87%)
Mutual labels:  select
ir-city-select
List of Iran provinces and cities to use in HTML forms. ( ~2.3KB gzipped )
Stars: ✭ 22 (-52.17%)
Mutual labels:  select
React Dropdown Select
Customisable dropdown select for react
Stars: ✭ 227 (+393.48%)
Mutual labels:  select
use-downshift
use-downshift.now.sh
Stars: ✭ 38 (-17.39%)
Mutual labels:  select
nova-select-plus
A Laravel Nova Select Field
Stars: ✭ 67 (+45.65%)
Mutual labels:  select
vue-drag-select
基于Vue的仿原生操作系统鼠标拖拽选择
Stars: ✭ 63 (+36.96%)
Mutual labels:  select
react-inputs-validation
A react component for form inputs validation. Online demo examples
Stars: ✭ 48 (+4.35%)
Mutual labels:  select

AUR version npm bundle size (minified)

@alfsnd/vue-bootstrap-select

A vue version of bootstrap select

Demo

Edit Vue Bootstrap Select Demo

Install

npm install @alfsnd/vue-bootstrap-select --save

Usage

import VSelect from '@alfsnd/vue-bootstrap-select'

export default {
  name: 'app',
  components: {
    VSelect
  },
  data() {
    return {
      selectedValue: null
    };
  }
}
<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

  <v-select :options="['Item 1', 'Item 2']" />

And arrays of objects

<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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].