解决 [Element Warn][Form]model is required for validate to work!

方法1
该提示说的是 form表单需要一个绑定一个 对象(使用:model=“editform” 不能使用v-model=“editform”), (我就是这个写错了)
同时v-model=“multipleSelectionStudent” 的multipleSelectionStudent一定一定一定要在editform对象中,
而例子中v-model=“multipleSelectionStudent” 的multipleSelectionStudent就不一定在editform对象中,因为此字段,没有做验证.

方法2
属性绑定错误,确保绑定的是 :model 而不是v-model ! :model 是element-ui 里面的一个 属性 恰巧 和 v-model 类似而已,两者并没有什么直接关系!

方法3
检查 ref 是否重复!
是否在其他el-form 中使用了相同的ref 名,多个el-form ref 命名不要相同
————————————————
原文链接:https://blog.csdn.net/weixin_44523860/article/details/116211585

原文地址:https://www.cnblogs.com/fyjz/p/15650198.html