JSFiddle - React, Tailwind, and code Playground
by Simon Herteby
HTML
<script src="https://unpkg.com/[email protected]"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/vue-multiselect.min.css">
<div id="vue">
<vue-multiselect
:options="options"
v-model="value"
@input="log('input')"
></vue-multiselect>
<input v-model.number="value">
</div>
Vue
Vue.component('vue-multiselect', window.VueMultiselect.default)
new Vue({
el:'#vue',
data(){
return {
options:[1,2,3,4,5],
value:null
}
},
methods:{
log:console.log
}
})