[Vuejs]-Passing v-model email value to methods

1👍

Check if you are getting the user email value in the resetPassword() function. If not, then the problem is in referencing.

Correct this line,

const userEmail = ref('')

You have to use the this keyword if you using the value from the HTML v-model.

Leave a comment