请问,如何才能验证<el-table>中的自定义列
<el-table v-bind:data="points"
style="width: 100%"
stripe
border>
<el-table-column label="测试列1"
align="center"
width="180">
<template scope="scope">
<el-input v-model="scope.row.Input_Value"></el-input>
</template>
</el-table-column>
</el-table>
var app = new Vue({
el: "#app",
data: {
points: [
{ Input_Value:1 },
{ Input_Value:2 },
{ Input_Value:3 }
]
}
});
需要验证scope.row.Input_Value不能为空
没想到不少人关注,解决方法如下:
或者看这里 table自定义列验证