[Vuejs]-$refs resetFields not a function AntDesign

0👍

form.reset() does not work when using v-model.

Reset the reactive data instead.

reset() {
    this.question.question.type = ""
    ...
    ...
}

Leave a comment