
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
vue3-select2-component
Advanced tools
Source code in: https://github.com/godbasin/vue-select2/tree/npm-publish-code-for-vue3.
Demo code in: https://github.com/godbasin/vue-select2/tree/demo-for-vue3-select-component.
vue3-select2-component is baseed on these plugins and libs(version):
// npm install
npm install vue3-select2-component --save
// import Select2Component
import Select2 from 'vue3-select2-component';
// Create a Vue application
const app = Vue.createApp({})
// Define a new global component called button-counter
app.component('Select2', Select2)
// import Select2Component
import Select2 from 'vue3-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 stringv-model: option value that is selected
id or string while multiple is disableid[] or string[] while multiple is enableupdate:modelValue
v-modelselect
option({id: value, text: key, selected: ifSelected} or string)disabled
placeholder
id
name
settings
setting: { settingOption: value, settingOption: value }FAQs
select2 component in vue3.
We found that vue3-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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.