Hi there, I have a question. Every time I try to click on the clear button, it keeps giving me an error message and I'm not sure what the issue is. Also, I can't type in the field anymore after clicking it.
methods: {
add () {
this.tableData.push({
date: new Date(this.form.date).toDateString(),
name: this.form.name,
email: this.form.email
})
},
clear () {
this.form = ''
}
}