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.*的版本中无法正常展示出来图片,有其他方式吗,还是这么写法有问题