美文网首页
vue 解析数据中返回的html

vue 解析数据中返回的html

作者: 江火渔枫 | 来源:发表于2024-02-28 11:26 被阅读0次

    <div v-html="doc.content"></div>

    但会报错
    Vue中 v-html 指令警告( warning ‘v-html‘ directive can lead to XSS attack vueno-v-html)
    使用下面方法

    <div v-dompurify-html="doc.content"></div>

    参考
    https://blog.csdn.net/a1056244734/article/details/125785518

    相关文章

      网友评论

          本文标题:vue 解析数据中返回的html

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