3π
β
In vue itβs not recommended to manipulate the DOM using vanilla JS because Vue is data-driven framework which means that your input should be bound to a data property and it changes based on that data not by assigning raw data to its attributes like :
entryDateElem.value.valueAsDate = new Date() // you're manipulating directly the DOM β
the right way :
entryDate.value = new Date() // you're manipulating the data β
Source:stackexchange.com