首页 前端知识 ant-design-vue中table组件使用customRender渲染v-html

ant-design-vue中table组件使用customRender渲染v-html

2024-03-03 11:03:36 前端知识 前端哥 936 589 我要收藏

ant-design-vue遇到table中列表数据需要高亮渲染

1、customRender可以使用,但是使用v-html发现不生效还报错

const columns = [
    title: 'name',
    dataIndex: 'name',
    customRender: (val, row) => {
        return <span v-html={val}></span>
    }
]

2、customRender函数返回肯定是jsx语法,于是发现这样写可以

const columns = [
    title: 'name',
    dataIndex: 'name',
    customRender: (val, row) => {
        return <span domPropsInnerHTML={val}></span>
    }
]
转载请注明出处或者链接地址:https://www.qianduange.cn//article/3118.html
标签
评论
会员中心 联系我 留言建议 回顶部
复制成功!