Socket
Book a DemoInstallSign in
Socket

@reciprocity/dropdown-multiselect

Package Overview
Dependencies
Maintainers
3
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@reciprocity/dropdown-multiselect

A dropdown component with multi value support

latest
npmnpm
Version
0.2.3
Version published
Maintainers
3
Created
Source

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
		}
	};

FAQs

Package last updated on 26 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts