使用iview中的table表格時避免不了使用render函數渲染自定義內容,或者渲染組件。可是在正常使用時出現了props傳值沒法識別,iview
按照官網介紹使用props以下:dom
render: (h, params) => { return h('div', [ h('Input', { props: { value: params.row.maxCommissionAmount, type: 'number', min:'0' }, style: { width: '100%', height: '25px', border: '1px solid #dcdee2', borderRadius: '4px', textAlign: 'center', outline: 'none', }, }) ]) }
直接使用props賦值沒法識別函數
要將props轉寫成domProps,這樣就能夠正常傳值啦code
render: (h, params) => { return h('div', [ h('Input', { domProps: { value: params.row.maxCommissionAmount, type: 'number', min:'0' }, style: { width: '100%', height: '25px', border: '1px solid #dcdee2', borderRadius: '4px', textAlign: 'center', outline: 'none', }, }) ]) }