{consol...">
美文网首页
iview 表格插入图片

iview 表格插入图片

作者: 七號7777 | 来源:发表于2020-04-03 14:10 被阅读0次

    {
    title: "商品图",
    key: "photo",
    render: (h, params) => {
    console.log(params.row)
    return h('div', {
    attrs: {
    style: 'width: 40px;height: 40px;'
    },
    }, [
    h('img', {
    props: {
    type: 'primary',
    size: 'small'
    },
    attrs: {
    src: require("../../assets/img/logo.png")
    },
    style: {
    },
    }),
    ]);
    }
    }

    相关文章

      网友评论

          本文标题:iview 表格插入图片

          本文链接:https://www.haomeiwen.com/subject/trphphtx.html