0.2.3 • Published 4 years ago

@reciprocity/dropdown-multiselect v0.2.3

Weekly downloads
8
License
MIT
Repository
-
Last release
4 years ago

Dropdown Multiselect

A component that renders a dropdown for selecting multiple values.

Installation

npm install @reciprocity/dropdown-multiselect

or

yarn add @reciprocity/dropdown-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>
    <dropdown-multiselect v-model='value' :options='options' @input='change' />
</template>
<script>
	import DropdownMultiselect from '@reciprocity/dropdown-multiselect';

	export default Vue.extend({
		name: 'My App',
		components: {
			DropdownMultiselect
		}
	};
0.2.3

4 years ago

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago