mounted () {
// Your Custom Method
this.someMethod()
this.$nextTick(()=>{
document.querySelectorAll('input').forEach(input => {
input.addEventListener('change', () => {
console.log('Listening event after you’ve changed some data to wait for the DOM update. ')
}, false);
})
})
}