标签:reset 它的 函数 efs pre role this item add
this.$refs[formName].resetFields();
但是有时使用它却可能会失效
解决:
form-item中要加上prop属性,它的值要与input的model对应
<el-form-item prop="roleDesc" label="描述">
<el-input v-model="addForm.roleDesc"></el-input>
</el-form-item>
所以prop属性不仅是在校验表单时要使用,在重置表单时也要加上
element-ui表单重置函数 resetFields 无效解决
标签:reset 它的 函数 efs pre role this item add
原文地址:https://www.cnblogs.com/flytree/p/14541413.html