iview-admin
iview-admin文档 https://lison16.github.io/iview-admin-doc/#/%E7%AE%80%E4%BB%8B
column自定义一列图片
{ title: "链接图片", key: "link_img", render: (h, params) => { return h( "div", { attrs: { style: "width: 40px;height: 40px;" } }, [ h("img", { props: { type: "primary", size: "small" }, attrs: { src: params.row.link_img, style: "width: 40px;height: 40px;border-radius: 2px;" }, style: {} }) ] ); } } |