标签:ice style his inpu view params row div 双向
{ title: "用户名", key: "stockPrice", render: (h, params) => { return h("Form", [ h("Input", { style: { marginLeft: "4px", width: "150px" }, props: { type: "text", value: params.row.stockPrice //使用data中的key }, on: { input: event => { this.data1[params.index].stockPrice= event;//双向绑定 console.log(event,this.data1); } } }), ]); } },
标签:ice style his inpu view params row div 双向
原文地址:https://www.cnblogs.com/xu-nian-qin/p/12870432.html