[Vuejs]-My autopopulated field is not being validated in Vue.js

-1👍

You could simulate "click" and "change" events for the input that is not being validated

Something like

const event = new Event('click');
elem.dispatchEvent(event);

See MDN reference

Leave a comment