I am using vuejs and creating/deleting dynamic select
, which is working fine.
Here is working fiddle : /
var vm = new Vue({
el: "#app",
data: {
optionArr: [{id:1,price:100},{id:2,price:200}],
options: [{id:1,value:'option1'},{id:2,value:'option2'},{id:3,value:'option3'}]
},
mounted() {
console.log("help!!!!");
//$("#opt_select_0,#opt_select_1").select2();
},
methods: {
addOption: function(){
var index = Object.keys(this.optionArr).length;
this.optionArr.push({id:'',price:''});
setTimeout(function(){
//$("#opt_select_"+index).select2();
},100);
},
deleteOption: function(index){
this.optionArr.splice(index, 1);
},
getAll: function(){
console.log(this.optionArr);
}
}
});
<script src=".1.1/jquery.min.js"></script>
<script src=".1.8/vue.js"></script>
<script src=".0.3/js/select2.js"></script>
<link rel="stylesheet" href=".0.3/css/select2.css">
<div id="app">
<div>{{ $data.optionArr }}</div>
<template v-for="(user_option,index) in optionArr">
<select class="applySelect2" v-bind:id="'opt_select_'+index" on-change="print" v-model="user_option.id">
<template v-for="option in options">
<option v-bind:value="option.id">{{option.value}}</option>
</template>
</select> <input type="text" v-model="user_option.price"> <span style="cursor:pointer;color:red;" v-on:click="deleteOption(index)">delete</span><br/>
</template><br/>
<div><span style="cursor:pointer;" v-on:click="addOption">+add options</span></div>
<br/>
<div><span style="cursor:pointer;" v-on:click="getAll">Get All</span></div>
</div>
I am using vuejs and creating/deleting dynamic select
, which is working fine.
Here is working fiddle : https://jsfiddle/nikleshraut/fgpdp700/2/
var vm = new Vue({
el: "#app",
data: {
optionArr: [{id:1,price:100},{id:2,price:200}],
options: [{id:1,value:'option1'},{id:2,value:'option2'},{id:3,value:'option3'}]
},
mounted() {
console.log("help!!!!");
//$("#opt_select_0,#opt_select_1").select2();
},
methods: {
addOption: function(){
var index = Object.keys(this.optionArr).length;
this.optionArr.push({id:'',price:''});
setTimeout(function(){
//$("#opt_select_"+index).select2();
},100);
},
deleteOption: function(index){
this.optionArr.splice(index, 1);
},
getAll: function(){
console.log(this.optionArr);
}
}
});
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare./ajax/libs/vue/2.1.8/vue.js"></script>
<script src="https://cdnjs.cloudflare./ajax/libs/select2/4.0.3/js/select2.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare./ajax/libs/select2/4.0.3/css/select2.css">
<div id="app">
<div>{{ $data.optionArr }}</div>
<template v-for="(user_option,index) in optionArr">
<select class="applySelect2" v-bind:id="'opt_select_'+index" on-change="print" v-model="user_option.id">
<template v-for="option in options">
<option v-bind:value="option.id">{{option.value}}</option>
</template>
</select> <input type="text" v-model="user_option.price"> <span style="cursor:pointer;color:red;" v-on:click="deleteOption(index)">delete</span><br/>
</template><br/>
<div><span style="cursor:pointer;" v-on:click="addOption">+add options</span></div>
<br/>
<div><span style="cursor:pointer;" v-on:click="getAll">Get All</span></div>
</div>
But if I want to use select2
, getting or setting select2 value is not working as expected. Also deleting not working.here
https://jsfiddle/nikleshraut/fgpdp700/3/
Share Improve this question edited Jun 22, 2017 at 13:58 Niklesh Raut asked Jan 13, 2017 at 11:38 Niklesh RautNiklesh Raut 34.9k17 gold badges81 silver badges112 bronze badges3 Answers
Reset to default 3Try like this,
Your html code :
I have changed select tag name to select2
<div id="app">
<div>{{ $data.optionArr }}</div>
<template v-for="(user_option,index) in optionArr">
<select2 class="applySelect2" v-bind:id="'opt_select_'+index" on-change="print" v-model="user_option.id">
<template v-for="option in options">
<option v-bind:value="option.id">{{option.value}}</option>
</template>
</select2> <input type="text" v-model="user_option.price"> <span style="cursor:pointer;color:red;" v-on:click="deleteOption(index)">delete</span><br/>
</template><br/>
<div><span style="cursor:pointer;" v-on:click="addOption">+add options</span></div>
<br/>
<div><span style="cursor:pointer;" v-on:click="getAll">Get All</span></div>
</div>
<script type="text/x-template" id="select2-template">
<select>
<slot></slot>
</select>
</script>
Check your js code :
I have added new wrapper ponent for select2.
Vue.ponent('select2', {
props: ['options', 'value'],
template: '#select2-template',
mounted: function () {
var vm = this
$(this.$el)
.val(this.value)
// init select2
.select2({ data: this.options })
// emit event on change.
.on('change', function () {
vm.$emit('input', this.value)
})
},
watch: {
value: function (value) {
// update value
$(this.$el).val(value)
},
options: function (options) {
// update options
$(this.$el).select2({ data: options })
}
},
destroyed: function () {
$(this.$el).off().select2('destroy')
}
})
var vm = new Vue({
el: "#app",
data: {
optionArr: [{id:1,price:100},{id:2,price:200}],
options: [{id:1,value:'option1'},{id:2,value:'option2'},{id:3,value:'option3'}]
},
mounted() {
console.log("help!!!!");
$("#opt_select_0,#opt_select_1").select2();
},
methods: {
addOption: function(){
var index = Object.keys(this.optionArr).length;
this.optionArr.push({id:'',price:''});
setTimeout(function(){
$("#opt_select_"+index).select2();
},100);
},
deleteOption: function(index){
this.optionArr.splice(index, 1);
},
getAll: function(){
console.log(this.optionArr);
}
}
});
Here is the jsfiddle link
Use v-select2-ponent instead of select2 plugin
1) Install v-select2-ponent
// npm install
npm install v-select2-ponent --save
2) import as global ponent.
// import Select2Component
import Select2 from 'v-select2-ponent';
Vue.ponent ('Select2', Select2);
new Vue ({
// ...
})
3) in HTML add the select with select2 tag
<Select2 v-model="myValue" :options="myOptions" />
<h4> Value: {{myValue}} </h4>
4) in JavaScript add this code
export default {
//declare Select2Component
ponents: {Select2},
data() {
return {
myValue: '',
myOptions: ['op1', 'op2', 'op3'] // or [{id: key, text: value}, {id: key, text: value}]
}
}
}
You can read the documentation at https://www.npmjs./package/v-select2-ponent/v/0.1.6
It works for me
$("#mySelectElement").select2({
data: this.myDataOrigin
})
.on('change', function () {
this.myVueVariable = $(this).select2("val");
});