Is there a way to properly submit a vue material stepper component? I attempted to enclose the md-stepper
tag within a form
tag like this:
<form @submit="onSubmit">
<md-stepper md-vertical class="stepper">
...
</md-stepper>
</form>
Unfortunately, this approach did not work as expected.
My question is, how can I utilize the 'FINISH' button as a submission button or what is the correct method for submitting that form?
Thank you!