Vue.extend({ props: ["row", "column"], render(h) { return h("el-input", { attrs: { readonly: true, value: this.row[this.column.property], style: {} } }); } })在render函數(shù)里,怎么給input添加hover樣式呢?
請(qǐng)教,render函數(shù)內(nèi),hover樣式如何添加
九州編程
2019-03-21 15:11:49