使用iview中的table表格时避免不了使用render函数渲染自定义内容,或者渲染组件.但是在正常使用时出现了props传值无法识别, 按照官网介绍使用props如下: render: (h, params) => { return h('div', [ h('Input', { props: { value: params.row.maxCommissionAmount, type: 'number', min:'0' }, style: { width: '100%', height:…