iviewrender函数中button应⽤属性render函数拥有三个参数
1.⼀个 HTML 标签字符串                    必选
2. ⼀个包含模板相关属性的数据对象  可选
3. ⼦虚拟节点 (VNodes)                      可选
render: (h, params) => {
let _this = this
return h('div',[
h('i-button',{
props: {
type: "text",//类型
size: "small",//尺⼨
ghost:true,//幽灵模式
w.analysisState==1//状态
},
domProps:{//dom节点
innerText: || '默认'
},
class:'tableBtn',
style: {
marginRight:'8px'
},
attrs: {
id: 'base-button'
},
on: {
click: () => {//事件
_this.w);margin属性怎么用
}
}
},'分析判断'),
])
}
当使⽤domProps的 innerText属性时 内容优先级⼤于 第三个参数 虚拟节点

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。