[Vuejs]-Use two submit button in vue js

0👍

It’s not the class, but the @submit that matters

The class just changes the appearance of the button. You want to change the behaviour.

Try adding this to the Know Your Risk button:

@submit.prevent="member_whitelist_signup"

Leave a comment