
Product
Introducing Repository Access Permissions and Custom Roles
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.
vue-multiselect-dropdown
Advanced tools
A reusable Vue dropdown component with multi-select and search support
A flexible and elegant Vue 3 component for multiselect and single-select dropdowns with search, keyboard navigation, custom placeholders, and validation support. Perfect for forms and complex selection UIs.
npm i vue-multiselect-dropdown
Global registration
// main.js or main.ts
import { createApp } from 'vue';
import App from './App.vue';
import MultiselectCustomDropDown from 'vue-multiselect-dropdown';
const app = createApp(App);
app.component('MultiselectCustomDropDown', MultiselectCustomDropDown);
app.mount('#app');
import MultiselectCustomDropDown from 'vue-multiselect-dropdown';
export default {
components: {
MultiselectCustomDropDown
}
};
<template>
<MultiselectCustomDropDown
v-model="selected"
:options="dropdownOptions"
:multiple="true"
:searchable="true"
label="Select Users"
placeholder="Choose..."
:required="true"
labelKey="name"
valueKey="id"
error="This field is required"
/>
</template>
<script setup>
import { ref } from 'vue';
const selected = ref([]);
const dropdownOptions = [
{ id: 1, name: 'Alice' },
{ id: 2, name: 'Bob' },
{ id: 3, name: 'Charlie' }
];
</script>
| Prop | Type | Default | Description |
|---|---|---|---|
modelValue | Array/Object/String | [] | Selected value(s), supports v-model |
options | Array | [] | Array of dropdown options |
multiple | Boolean | false | Enable multi-select mode |
searchable | Boolean | false | Enable search input |
placeholder | String | "Select an option" | Placeholder text |
label | String | "" | Optional label for the dropdown |
required | Boolean | false | Show red asterisk if required |
error | String | "" | Error message below the field |
labelKey | String | "name" | Key in option object for label display |
valueKey | String | "value" | Key in option object for unique value |
FAQs
A reusable Vue dropdown component with multi-select and search support
The npm package vue-multiselect-dropdown receives a total of 1 weekly downloads. As such, vue-multiselect-dropdown popularity was classified as not popular.
We found that vue-multiselect-dropdown demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.