Vue.extend({
props: ["row", "column"],
render(h) {
return h("el-input", {
attrs: {
readonly: true,
value: this.row[this.column.property],
style: {}
}
});
})
在render函数里,怎么给input添加hover样式呢?
偶然的你
相关分类