如果要在标签中加入属性,例如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);
          }
        }
      }, '删除')
    ]);
  }
}

相关文章:

  • 2021-05-22
  • 2021-08-26
  • 2022-12-23
  • 2021-08-31
  • 2021-11-15
  • 2021-08-15
  • 2022-12-23
猜你喜欢
  • 2022-01-11
  • 2022-12-23
  • 2021-06-12
  • 2021-08-15
  • 2022-12-23
  • 2021-07-30
相关资源
相似解决方案