Skip to content
Advertisement

Vue.js – can not add date/timepicker to the html element rendered by vue.js

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

The Vue js code

JavaScript

Advertisement

Answer

Try this then the DOM will be finished rendering, not before nextTick:

JavaScript

when the function in nextTick is executed, the DOM Element will be rendered.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement