[Vuejs]-Pass data from form in vue

0👍

You want to add your event to the tag.
Also, the way to use events in Vue is like this v-on:change or @change.

So it should look like this:

<form v-on:change="yourMethod">

Here is more info on Vue events.

Leave a comment