i'm developing an app with vue, vuetify and electron. I have a form that i can submit, but once submitted,after the reset i can't compile it again, i have all input blank, if i click on an input they appear as active, but can't write inside. i tried many solutions found over the internet, but with no success. the form is inside a v-dialog, i reset with
this.$refs.form.resetValidation()
this.$refs.form.reset()
or i tried also
this.$refs.form.reset()
this.dataForm = Object.assign({}, this.defaultItem)
but the behaviour is always the same
someone could help me please? thank you