0.6.2 • Published 2 years ago

@reciprocity/multiselect v0.6.2

Weekly downloads
91
License
MIT
Repository
-
Last release
2 years ago

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/multiselect

or

yarn add @reciprocity/multiselect

Usage

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

PropDescriptionTypeDefault
optionMultilineDisplay the options in multiple lines in case the label exceeds the options widthBoolfalse
0.6.2

2 years ago

0.6.1

2 years ago

0.5.10

4 years ago

0.5.9

4 years ago

0.5.8

4 years ago

0.5.7

4 years ago

0.5.6

4 years ago

0.5.5

4 years ago

0.5.4

4 years ago

0.5.3

4 years ago

0.5.2

4 years ago

0.5.1

4 years ago

0.5.0

4 years ago

0.4.5

4 years ago

0.4.6

4 years ago

0.4.4

4 years ago

0.4.3

4 years ago

0.4.2

4 years ago

0.4.1

4 years ago

0.4.0

4 years ago

0.3.1

4 years ago

0.3.0

4 years ago

0.2.5

4 years ago

0.2.4

4 years ago

0.2.3

4 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago