vue+element-ui el-table组件内表单验证问题

vue+element-ui el-table组件内表单验证问题

添加rules
rules: {
    variable_name: [{ required: true, message: '名称不能为空', trigger: "blur" }]
}
复制代码
html代码
"variableForm" :model="variable">
    "variable.Variable">
        "名称">
            
        
    

复制代码
js代码
this.$refs.variableForm.validate(variable => {
    if (!variable) {
        return;
    }
}    
复制代码

关键:

如何给el-form-item动态绑定prop

:prop="'Variable.' + scope.$index + '.字段名'"

转载于:https://juejin.im/post/5bee563ee51d452e85192801

你可能感兴趣的:(javascript,ui)