You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello @lizhenping-github, your issue has been closed because it does not conform to our issue requirements. Please use the Issue Helper to create an issue, thank you!
const columns = [
{
title: 'Gender',
dataIndex: 'gender',
key: 'gender',
width: 80,
render: (text, record) => {
return h('img', {
attrs: {
src: text,
alt: record.name
},
style: {
width: '50px',
height: 'auto'
}
})
},
},
];
按照上述方式构建列信息,在1.*的版本中无法正常展示出来图片,有其他方式吗,还是这么写法有问题
The text was updated successfully, but these errors were encountered: