Quick Start
Import or install package to your application
Install the package by making use of the command below
npm i vue3-search-select
In your script, import the package and it's CSS below
import { DynamicMultiSelect } from 'vue3-search-select'
import 'vue3-search-select/Vue-Search-Select.css'
In your template
<DynamicMultiSelect
:data='pseduoPeopleData'
v-model='value'
display-key='firstName lastName - gender'
primary-key='employeeId'
/>
- data is where you will pass data to.
- displayKey are those keys you want to display from the data passed to the component.
- primaryKey is the key that will tracked and added to the v-model when items are picked.