重置vue中的表单数据

方法一:element的resetfields

this.$refs[formRef].resetfields()

 方法二:vue的thisoptionsdataform方法对form重置

this.updateForm= this.$options.data().updateForm

方法三:vue的data重置

this.$data = this.$options.data();

猜你喜欢

转载自blog.csdn.net/weixin_57607714/article/details/125439210