render中的內(nèi)容如果想加入自定義的屬性,可以加上attrs整吆,在attrs中添加即可
return h('Button',
{
props: {
type: 'info',
size: 'small',
disabled: vm.PurchaseType == '@ConstantUtils.F_Purchase.FINANCE' ? true : false,
authorize:'no'
},
attrs:{
authorize: 'no',
id: 'Purchase_Add'
},
style: {
marginRight: '5px'
},
on: {
click: () => {
vm.btn_Form(h, params, '修改')
}
}
},
'修改')