[Vuejs]-Vue binding value to input

0👍

I figure out with this.
Issue – that part was cloned by me into another location via

var divWithReactiveInput = document.querySelector('.someclass')
document.querySelector('.someclass').innerHtml = divWithReactiveInput.innerHtml

And I expected same reactive behaviour as on original elem.

Ofc, this wont work.

Leave a comment