注意:不要使用props,这种的需要使用attrs!
title: '头像',
key: 'avatar',
columns: {
'width':'50px'
},
render: (h, params) => {
return h('div', [
h('img', {
attrs: {
src: params.row.avatar
},
style: {
width: '40px',
height: '40px'
}
}),
]);
}
},