vue iview组件表格 render函数的使用方法详解
如果要在标签中加入属性,例如img中src属性 a标签中href属性 此时需要用到
attrs来加入而不是props
{
title:'操作',
key:'action',
align:'center',
render:function(h,params){
returnh('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);
}
}
},'删除')
]);
}
}
以上这篇vueiview组件表格render函数的使用方法详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。