In order for the user to be able to activate the @submit events on the form, create a QBtn with type set to submit
<q-form
@submit.prevent="yourSubmitMethod"
>
// your form
<q-btn label="Submit" type="submit" color="primary"/>
</q-form>