I am new to using Vue and this is my first attempt at creating something with it.
You can check out a quick JSFiddle demo here
My goal is to create a form that initially displays values without input, and when clicked, the input fields will appear. While I have managed to create a mockup that seems "working", I am unsure if this is the best approach. Specifically, I am not certain about:
Vue.nextTick(function() {
document.getElementById(field.id).focus();
});
Additionally, I am curious if there is a recommended input validation library or tool that I should be using?
Any suggestions or guidelines would be greatly appreciated! :wink:
Thank you!