Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vueform/multiselect

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vueform/multiselect

Vue 3 multiselect component with single select, multiselect and tagging options.

  • 1.1.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
72K
decreased by-8.96%
Maintainers
1
Weekly downloads
 
Created
Source
CircleCI npm bundle size (scoped version) GitHub Discord npm

Vue 3 multiselect by Vueform





About Vueform

Vueform is form library for Vue 2 & 3 with 30+ elements, file uploads, element nesting, 50+ validators, conditions, form steps and many more including reactive configuration, API access and ESM modules. Check out our live demos or see all the features and sign up for beta to get early access.

Multiselect features

  • Vue 2 & 3 support
  • No dependencies
  • Lightweight (~5 kB gzipped)
  • 100% coverage
  • ESM support
  • Single select options
  • Multiple select options
  • Tags
  • Async options
  • Search & filtering
  • Custom slots
  • Events
  • Fully configurable

Installation

npm install @vueform/multiselect

Usage with Vue 3

<template>
  <div>
    <Multiselect
      v-model="value"
      :options="options"
    />
  </div>
</template>

<script>
  import Multiselect from '@vueform/multiselect'

  export default {
    components: {
      Multiselect,
    },
    data() {
      return {
        value: null,
        options: [
          'Batman',
          'Robin',
          'Joker',
        ]
      }
    }
  }
</script>

<style src="@vueform/multiselect/themes/default.css"></style>

Usage with Vue 2

When using with Vue 2 make sure to install @vue/composition-api first and change the imported module to:

import Multiselect from '@vueform/multiselect/dist/multiselect.vue2.js'

Props

NameTypeDefaultDescription
appendNewTagbooleantrueWhether should append new tag automatically to multiselect's options when using tags mode with createTag. If set to false you need to take care of appending a new tag to the :options list upon @tag event.
caretbooleantrueWhether should display a caret (small triangle on the right).
clearOnSearchbooleanfalseWhether the option list should be cleared upon a new typed character when using async options.
clearOnSelectbooleantrueWhether the option list should be cleared upon selecting an option when using async options.
createTagbooleanfalseWhether should allow creating new tag based on search query when using tags mode.
delaynumber-1The delay that should occur between the last typed character and refreshing an async option list. If -1 the option list will not refresh when the search query changes. If 0 it will refresh without delay. The number refers to milliseconds.
disabledbooleanfalseWhether the input should be disabled.
filterResultsbooleantrueWhether option list should be filtered by search query. This may be set to false if you are handling filtering when returning async options.
hideSelectedTagbooleantrueWhether selected tags should be excluded from the list when using tags mode.
idstring'multiselect'The id of the multiselect container DOM.
labelstring'label'If you provide an array of objects as options this property of those objects will be displayed for options and selected label.
limitnumber-1The maximum number of options that should be displayed. If -1 it won't be limited.
loadingbooleanfalseWhether a loading spinner should be shown.
maxHeightnumber160The maximum height of options list.
minCharsnumber0The minimum number of characters that should be typed to refresh async option list. If 0 it will refresh even when the search field becomes empty.
modestringsinglePossible values: single|multiple|tags.
modelValuestring|number|arraynullThe variable that should store the select value when using Vue 3. If v-model is used it does not need to be set.
multipleLabelfunctionA function that should return how the label should be displayed when using multiple mode. It receives value as an argument. By default it renders 1 option selected and [n] options selected based on value length.
noOptionsTextstring'The list is empty'The text that should be displayed when options list is empty.
noResultsTextstringNo results foundThe text that should be when there are no search results.
objectbooleanfalseWhether the value should be stored as an object. If set to false while using an array of objects as :options the value property will be used as value. If set to true without using an array of objects as :options an object that contains value property along with :trackBy's and :label's value will be set as value.
optionsarray|object|function[]List of options. Can be:
- an array (eg. [1,2,3])
- an object (eg. {a:1,b:2,c:3})
- an array of objects [{value:1,label:'v1'},{value:2,label:'v2'},{value:3,label:'v3'}]
- a sync or async function with query input param that returns options as an object or as an array of objects.
When an array of objects is provided it must have a value property as well as properties that equal to :trackBy's and :label's value (both configurable and default to label).
placeholderstringnullThe text that should be displayed before an options are selected.
resolveOnLoadbooleantrueWhether async options should be loaded initially (with an empty query). This should be true if you are planning to load non-object value initially while using async options.
searchablebooleanfalseWhether the options should be searchable.
trackBystringlabelThe name of the property that should be searched when searchable is true and an array of objects are provided as :options.
valuestring|number|arraynullThe variable that should store the select value when using Vue 2. If v-model is used it does not need to be set.

Events

EventAttributesDescription
@closeEmitted after closing the option list.
@deselectoptionEmitted after an option is deselected or a tag is removed.
@inputvalueEmitted after the value is changed.
@openEmitted after opening the option list.
@search-changequeryEmitted after a character is typed.
@selectoptionEmitted after an option or tag is selected.
@tagqueryEmitted after enter is hit when a new tag is being created.

Slots

SlotAttributesDescription
afterListRendered after the options list.
beforeListRendered before the options list.
multipleLabelvaluesRendered when using multiple mode and options are selected. By default it renders the return value of multipleLabel function.
noOptionsRendered when the options list is empty. By default renders noOptionsText.
noResultsRendered when there are no search results. By default renders noResultsText.
optionoption, searchRenders an option in options list.
singleLabelvalueRendered when using single mode and an option is selected. By default it renders the :label if the selected option.
tagoption, remove, disabledRenders a tag when using tags mode. When disabled the remove icon should not be displayed. The remove prop should be used to trigger the removal of the tag.

Examples

Single select with array options

<template>
  <div>
    <Multiselect
      v-model="value"
      placeholder="Select your character"
      :options="options"
    />
  </div>
</template>

<script>
  import Multiselect from '@vueform/multiselect'

  export default {
    components: { Multiselect },
    data() {
      return {
        value: null,
        options: ['Batman', 'Robin', 'Joker']
      }
    }
  }
</script>

<style src="@vueform/multiselect/themes/default.css"></style>

Single select with object options

<template>
  <div>
    <Multiselect
      v-model="value"
      placeholder="Select your character"
      :options="options"
    />
  </div>
</template>

<script>
  import Multiselect from '@vueform/multiselect'

  export default {
    components: { Multiselect },
    data() {
      return {
        value: null,
        options: {
          batman: 'Batman',
          robin: 'Robin',
          joker: 'Joker'
        }
      }
    }
  }
</script>

<style src="@vueform/multiselect/themes/default.css"></style>

Single select with custom options

<template>
  <div>
    <Multiselect
      v-model="value"
      placeholder="Select your character"
      label="name"
      trackBy="name"
      :options="options"
      :searchable="true"
    >
      <template v-slot:singleLabel="{ value }">
        <div class="multiselect-single-label">
          <img height="26" style="margin: 0 6px 0 0;" :src="value.icon"> {{ value.name }}
        </div>
      </template>

      <template v-slot:option="{ option }">
        <img height="22" style="margin: 0 6px 0 0;" :src="option.icon">{{ option.name }}
      </template>
    </Multiselect>
  </div>
</template>

<script>
  import Multiselect from '@vueform/multiselect'

  export default {
    components: { Multiselect },
    data() {
      return {
        value: null,
        options: [
          { value: 'captainamerica', name: 'Captain America', icon: 'https://cdn2.iconfinder.com/data/icons/avengers-filled/48/03_-_Captain_America_-_infinity_war_-_end_game_-_marvel_-_avengers_-_super_hero-512.png' },
          { value: 'spiderman', name: 'Spiderman', icon: 'https://cdn2.iconfinder.com/data/icons/avengers-filled/48/12_-_Spiderman_-_infinity_war_-_end_game_-_marvel_-_avengers_-_super_hero-512.png' },
          { value: 'ironman', name: 'Iron Man', icon: 'https://cdn2.iconfinder.com/data/icons/avengers-filled/48/02_-_IRONMAN_-_infinity_war_-_end_game_-_marvel_-_avengers_-_super_hero-512.png' },
        ]
      }
    }
  }
</script>

<style src="@vueform/multiselect/themes/default.css"></style>

Multiselect

<template>
  <div>
    <Multiselect
      v-model="value"
      mode="multiple"
      placeholder="Select your characters"
      :options="options"
    />
  </div>
</template>

<script>
  import Multiselect from '@vueform/multiselect'

  export default {
    components: { Multiselect },
    data() {
      return {
        value: [],
        options: ['Batman', 'Robin', 'Joker']
      }
    }
  }
</script>

<style src="@vueform/multiselect/themes/default.css"></style>

Multiselect with custom label

<template>
  <div>
    <Multiselect
      v-model="value"
      mode="multiple"
      placeholder="Select your characters"
      :options="options"
    >
      <template v-slot:multipleLabel="{ values }">
        <div class="multiselect-multiple-label">
          {{ values.length }} characters selected
        </div>
      </template>
    </Multiselect>
  </div>
</template>

<script>
  import Multiselect from '@vueform/multiselect'

  export default {
    components: { Multiselect },
    data() {
      return {
        value: [],
        options: ['Batman', 'Robin', 'Joker']
      }
    }
  }
</script>

<style src="@vueform/multiselect/themes/default.css"></style>
<template>
  <div>
    <Multiselect
      v-model="value"
      mode="tags"
      placeholder="Select your characters"
      :options="options"
      :search="true"
    />
  </div>
</template>

<script>
  import Multiselect from '@vueform/multiselect'

  export default {
    components: { Multiselect },
    data() {
      return {
        value: [],
        options: ['Batman', 'Robin', 'Joker']
      }
    }
  }
</script>

<style src="@vueform/multiselect/themes/default.css"></style>

Tags with create option

<template>
  <div>
    <Multiselect
      v-model="value"
      mode="tags"
      placeholder="Select your characters"
      :options="options"
      :searchable="true"
      :createTag="true"
    />
  </div>
</template>

<script>
  import Multiselect from '@vueform/multiselect'

  export default {
    components: { Multiselect },
    data() {
      return {
        value: [],
        options: ['Batman', 'Robin', 'Joker']
      }
    }
  }
</script>

<style src="@vueform/multiselect/themes/default.css"></style>

License

MIT

FAQs

Package last updated on 19 Dec 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc