I have form elements aren’t available in the html document until an inline script runs on page load. How to I bind to these form elements in Vue.js after the page loads? Obviously with jQuery I could do a $(‘.element’).each(), but what is the ‘Vue way’? I need to set the valueattribute of the hidden inputs. Answer The answer for