vue iview組件表格 render函數的使用

若是要在標籤中加入屬性,例如img 中src屬性   a標籤中href屬性  此時須要用到
attrs 來加入而不是props
{
  title: '操做', key: 'action', align: 'center', render: function (h, params) { return h('div', [ h('Button', { props: { type: 'primary', size: 'small' }, style: { marginRight: '8px' }, on: { click: function () { mCheck.singleShow(params.row); } } }, '查看'), h('Button', { props: { type: 'error', size: 'small' }, on: { click: function () { mCheck.singleDel(params.row, params.index); } } }, '刪除') ]); } }
相關文章
相關標籤/搜索