0.6.2 • Published 3 years ago
@reciprocity/multiselect v0.6.2
Multiselect
A select component with support multi value selection, auto-complete, etc.
Based on Vue Multiselect. Check out the documentation for more options.
Installation
npm install @reciprocity/multiselector
yarn add @reciprocity/multiselectUsage
This component is meant to be used as an ES module, so you can import it using the ES6 import syntax.
After importing you can just register it with Vue. Eg:
app.vue
<template>
<zen-multiselect v-model='value' :options='options'>Click me!</multiselect>
</template>
<script>
import ZenMultiselect from '@ reciprocity/multiselect';
export default Vue.extend({
name: 'My App',
data() {
return {
value: null,
options: ['Argentina', 'Slovenia', 'United States'],
},
},
components: {
ZenMultiselect,
},
};
</script>Props
| Prop | Description | Type | Default |
|---|---|---|---|
| optionMultiline | Display the options in multiple lines in case the label exceeds the options width | Bool | false |
0.6.2
3 years ago
0.6.1
3 years ago
0.5.10
5 years ago
0.5.9
5 years ago
0.5.8
5 years ago
0.5.7
5 years ago
0.5.6
5 years ago
0.5.5
5 years ago
0.5.4
5 years ago
0.5.3
6 years ago
0.5.2
6 years ago
0.5.1
6 years ago
0.5.0
6 years ago
0.4.5
6 years ago
0.4.6
6 years ago
0.4.4
6 years ago
0.4.3
6 years ago
0.4.2
6 years ago
0.4.1
6 years ago
0.4.0
6 years ago
0.3.1
6 years ago
0.3.0
6 years ago
0.2.5
6 years ago
0.2.4
6 years ago
0.2.3
6 years ago
0.2.2
6 years ago
0.2.1
6 years ago
0.2.0
6 years ago
0.1.1
6 years ago
0.1.0
6 years ago