What is vue-multiselect?
vue-multiselect is a powerful and flexible Vue.js component for creating dropdowns with multi-select capabilities. It supports single and multiple selections, tagging, filtering, and custom rendering of options.
What are vue-multiselect's main functionalities?
Single Select
This feature allows users to select a single option from a dropdown list. The `multiple` prop is set to `false` to enable single selection.
<template>
<multiselect v-model="selected" :options="options" :multiple="false"></multiselect>
</template>
<script>
import Multiselect from 'vue-multiselect';
export default {
components: { Multiselect },
data() {
return {
selected: null,
options: ['Option 1', 'Option 2', 'Option 3']
};
}
};
</script>
Multiple Select
This feature allows users to select multiple options from a dropdown list. The `multiple` prop is set to `true` to enable multiple selections.
<template>
<multiselect v-model="selected" :options="options" :multiple="true"></multiselect>
</template>
<script>
import Multiselect from 'vue-multiselect';
export default {
components: { Multiselect },
data() {
return {
selected: [],
options: ['Option 1', 'Option 2', 'Option 3']
};
}
};
</script>
Tagging
This feature allows users to add new options (tags) to the dropdown list. The `taggable` prop is set to `true`, and the `@tag` event is used to handle the addition of new tags.
<template>
<multiselect v-model="selected" :options="options" :taggable="true" @tag="addTag"></multiselect>
</template>
<script>
import Multiselect from 'vue-multiselect';
export default {
components: { Multiselect },
data() {
return {
selected: [],
options: ['Option 1', 'Option 2', 'Option 3']
};
},
methods: {
addTag(newTag) {
this.options.push(newTag);
this.selected.push(newTag);
}
}
};
</script>
Custom Option Rendering
This feature allows users to customize the rendering of options in the dropdown list. The `custom-label` prop is used to define a method that returns a custom label for each option.
<template>
<multiselect v-model="selected" :options="options" :custom-label="customLabel"></multiselect>
</template>
<script>
import Multiselect from 'vue-multiselect';
export default {
components: { Multiselect },
data() {
return {
selected: null,
options: [
{ name: 'Option 1', id: 1 },
{ name: 'Option 2', id: 2 },
{ name: 'Option 3', id: 3 }
]
};
},
methods: {
customLabel(option) {
return `${option.name} (ID: ${option.id})`;
}
}
};
</script>
Other packages similar to vue-multiselect
vue-select
vue-select is a Vue.js component that provides a similar set of features to vue-multiselect, including single and multiple selections, tagging, and custom option rendering. It is known for its simplicity and ease of use.
vue-multiselect-next
vue-multiselect-next is a fork of vue-multiselect that aims to provide additional features and improvements. It offers similar functionalities with enhanced performance and additional customization options.
vue-treeselect
vue-treeselect is a multi-select component with nested options support. It is particularly useful for hierarchical data structures and provides features like single and multiple selections, search, and custom rendering.
vue-multiselect
Probably the most complete selecting solution for Vue.js, without jQuery.
Features & characteristics:
- NO dependencies
- Single select
- Multiple select
- Tagging
- Dropdowns
- Filtering
- Search with suggestions
- Logic split into mixins
- Basic component and support for custom components
- Vuex support
- Async options support
- > 95% test coverage
- Fully configurable (see props list below)
Demo & docs
http://monterail.github.io/vue-multiselect/
Install & basic usage
npm install vue-multiselect
<template>
<div>
<multiselect :selected.sync="selected" :options="options"></multiselect>
</div>
</template>
import Multiselect from 'vue-multiselect'
export default {
components: { Multiselect },
data () {
return {
selected: null,
options: ['list', 'of', 'options']
}
}
}
You can now author custom components based on vue-multiselect mixins.
import { multiselectMixin, pointerMixin } from 'vue-multiselect'
export default {
mixins: [multiselectMixin, pointerMixin],
data () {
return {
selected: null,
options: ['list', 'of', 'options']
}
}
}
Roadmap:
- Option grouping
- Better mobile support
- Stateless dropdowns (with no selected prop, just action pickers / search boxes)
- RTL support, accessibility
- Examples of custom components / templates ready to use in project
- Reworking the documentation to include much more examples and use cases
- Fix problem with not counting the height of the option element when creating a custom element. This is important for scrolling the options viewport when using highlighting pointer.
Examples
in jade-lang/pug-lang
Single select / dropdown
multiselect(
:options="source",
:selected.sync="value",
:multiple="false",
:searchable="false",
placeholder="Select one",
label="name",
:close-on-select="false",
:allow-empty="false",
key="name"
)
Single select with search
multiselect(
:options="source",
:selected.sync="value",
:multiple="false",
:searchable="true",
placeholder="Select one",
label="name",
:close-on-select="true",
:clear-on-select="false"
key="name"
)
Multiple select with search
multiselect(
:options="source",
:selected.sync="multiValue",
:multiple="true",
:searchable="true",
placeholder="Pick some",
label="name",
:close-on-select="true"
key="name"
)
Tagging
with :on-tag
and :on-change
callback functions
multiselect(
:options="taggingOptions",
:selected="taggingSelected",
:multiple="multiple",
:searchable="searchable",
:on-tag="addTag",
:on-change="updateSelectedTagging",
:taggable="true",
tag-placeholder="Add this as new tag"
placeholder="Type to search or add tag"
label="name"
key="code"
)
addTag (newTag) {
const tag = {
name: newTag,
code: newTag.substring(0, 2) + Math.floor((Math.random() * 10000000))
}
this.taggingOptions.push(tag)
this.taggingSelected.push(tag)
},
Vuex supporting example
with :on-change
callback function
multiselect(
:options="source",
:selected="value",
:multiple="false",
:searchable="false",
placeholder="Select one",
:on-change="onChangeAction"
)
methods: {
onChangeAction (newValue) {
dispatch('SET_SELECT_VALUE', newValue)
}
}
Asynchronous dropdown
multiselect(
:options="countries",
:selected.sync="selectedCountries",
:multiple="multiple",
:searchable="searchable",
placeholder="Type to search",
:on-search-change="asyncFind",
label="name"
key="code"
)
span(slot="noResult").
Oops! No elements found. Consider changing the search query.
methods: {
asyncFind (query) {
this.countries = findService(query)
}
}
Props config
props: {
options: {
type: Array,
required: true
},
multiple: {
type: Boolean,
default: false
},
selected: {
required: true
},
key: {
type: String,
default: false
},
label: {
type: String,
default: false
},
searchable: {
type: Boolean,
default: true
},
clearOnSelect: {
type: Boolean,
default: true
},
hideSelected: {
type: Boolean,
default: false
},
placeholder: {
type: String,
default: 'Select option'
},
maxHeight: {
type: Number,
default: 300
},
allowEmpty: {
type: Boolean,
default: true
},
onChange: {
type: Function,
default: false
},
onSearchChange: {
type: Function,
default: false
},
touched: {
type: Boolean,
default: false
},
resetAfter: {
type: Boolean,
default: false
},
closeOnSelect: {
type: Boolean,
default: true
},
customLabel: {
type: Function,
default: false
},
taggable: {
type: Boolean,
default: false
},
onTag: {
type: Function,
default: function (tag) {
this.options.push(tag)
this.value.push(tag)
}
},
tagPlaceholder: {
type: String,
default: 'Press enter to create a tag'
}
}
props: {
showPointer: {
type: Boolean,
default: true
}
}
props: {
selectLabel: {
type: String,
default: 'Press enter to select'
},
selectedLabel: {
type: String,
default: 'Selected'
},
deselectLabel: {
type: String,
default: 'Press enter to remove'
},
showLabels: {
type: Boolean,
default: true
},
limit: {
type: Number,
default: 99999
},
limitText: {
type: Function,
default: count => `and ${count} more`
}
}
Contributing
npm run dev
npm run build
npm run test
npm run unit-watch
For detailed explanation on how things work, checkout the guide and docs for vue-loader.