I get an error when trying the v-model
two way binding on the Vuetify v-text-field
in Nuxt.
I don't know why I get a TypeError: Cannot read property 'email' of null
as soon as the text field gets an input.
Could someone please explain me what I'm doing wrong here because I really don't understand ?
You are using
this.email
andthis.message
inside brackets in this v-window-itemYou have to use
email
andmessage
instead.