您现在的位置:首页 >> 前端 >> 内容

vueiview组件表格render函数的使用教程

时间:2017/9/25 9:35:00 点击:

  核心提示:如果要在标签中加入属性,例如img 中src属性 a标签中href属性 此时需要用到attrs 来加入而不是props{title: 操作,key: action,align: center,rend...

如果要在标签中加入属性,例如img 中src属性 a标签中href属性 此时需要用到attrs 来加入而不是props

{
  title: '操作',
  key: 'action',
  align: 'center',
  render: function (h, params) {
    return h('p', [
      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);
          }
        }
      }, '删除')
    ]);
  }
}

Tags:VU UE EI IV 
作者:网络 来源:zjl5160884