I have a Vue.js component where there are groups of text fields ( group of a text field labelled “Start” and another text field labelled “To”) bound to a Vue array ( s.timespans) .
What I want is, when I add another group of text field by adding element to the ( s.timespans ) array, all the textfields get date/timepicker. But unfortunately, now only the first group of field gets the date/timepicker and the other groups don’t. What is the right way of doing this?
Thanks in advance.
JavaScript
x
17
17
1
<template id="settings">
2
<div v-for="(k,slot) in s.timespans" class="row mb5">
3
<div class="col-sm-5">
4
<label><?php _e( 'From', 'smps' ); ?></label>
5
<input type="text" class="datepicker form-control" v-model="slot.from">
6
</div>
7
<div class="col-sm-5">
8
<label><?php _e( 'To', 'smps' ); ?></label>
9
<input type="text" class="datepicker form-control" v-model="slot.to">
10
</div>
11
<div class="col-sm-2">
12
<a href="javascript:" class="btn btn-default pull-right btn-xs br0" @click="remove_timeslot(k)"><i class="fa fa-remove"></i></a>
13
</div>
14
</div>
15
16
<template>
17
The Vue js code
JavaScript
1
24
24
1
Vue.component( 'settings', {
2
template : '#settings',
3
data : function () {
4
return {
5
s : {
6
timespans : [
7
{from : '', to : ''}
8
]
9
}
10
}
11
},
12
methods : {
13
add_timeslot : function () {
14
Vue.set(this.s.timespans,this.s.timespans.length,{from:'',to:''});
15
$('.datepicker').datetimepicker();
16
},
17
remove_timeslot : function (k) {
18
this.s.timespans.splice(k,1);
19
},
20
21
},
22
23
});
24
Advertisement
Answer
Try this then the DOM will be finished rendering, not before nextTick:
JavaScript
1
7
1
add_timeslot : function () {
2
Vue.set(this.s.timespans,this.s.timespans.length,{from:'',to:''});
3
this.$nextTick(function () {
4
$('.datepicker').datetimepicker();
5
});
6
},
7
when the function in nextTick is executed, the DOM Element will be rendered.