I have a Vue instance - a form that uses a router that switches between several components.
<div id="form">
<router-view></router-view>
</div>
Each route uses a different Vue component.
I would like to call a method on the form that will validate all form sections/routes.
For this I need to be able to access all my form components and run a Validate method on them, but because they are not direct children of the form I cannot access them. (only one component is loaded at a time - the one in the current route)
Is there a way to access the components that are not loaded in the route?
Thanks, Y.