欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue iview组件表格 render函数的使用方法详解

程序员文章站 2023-10-29 15:03:16
如果要在标签中加入属性,例如img 中src属性   a标签中href属性  此时需要用到 attrs 来加入而不是props...

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

以上这篇vue iview组件表格 render函数的使用方法详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。