
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
v-select2-component
Advanced tools
This project was generated with Vue cli version 2.9.1.
This project is built for showing how to use v-select2-component.
Source code in: https://github.com/godbasin/vue-select2/tree/npm-publish-code.
Vue-Select2-Component is baseed on these plugins and libs(version):
// npm install
npm install v-select2-component --save
// import Select2Component
import Select2 from 'v-select2-component';
Vue.component('Select2', Select2);
new Vue({
// ...
})
// import Select2Component
import Select2 from 'v-select2-component';
<template>
<div>
<Select2 v-model="myValue" :options="myOptions" :settings="{ settingOption: value, settingOption: value }" @change="myChangeEvent($event)" @select="mySelectEvent($event)" />
<h4>Value: {{ myValue }}</h4>
</div>
</template>
<script>
export default {
// declare Select2Component
components: {Select2},
data() {
return {
myValue: '',
myOptions: ['op1', 'op2', 'op3'] // or [{id: key, text: value}, {id: key, text: value}]
}
},
methods: {
myChangeEvent(val){
console.log(val);
},
mySelectEvent({id, text}){
console.log({id, text})
}
}
}
</script>
options
: option[]
option
: {id: key, text: value}
or string
v-model
: option value that is selected
id
or string
while multiple is disableid[]
or string[]
while multiple is enablechange
v-model
select
option
({id: value, text: key, selected: ifSelected}
or string
)disabled
placeholder
id
name
settings
setting
: { settingOption: value, settingOption: value }
FAQs
select2 component in vue.
The npm package v-select2-component receives a total of 4,505 weekly downloads. As such, v-select2-component popularity was classified as popular.
We found that v-select2-component demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.