v-html 解析富文本内容

内容分享6个月前发布
1 0 0
全能 AI 聚合平台 免费

一站式接入主流 AI 大模型,支持对话 · 生图 · 生视频,即开即用

ChatGPT Claude Gemini Grok DeepSeek 通义千问 Ollama
AI对话 AI生图 AI视频
免费使用 →
  • 例如有个msg数据

data() {
    return {
        msg : "<h1 style= color:red >这是一个html元素内容</h1> <h2>h2内容</h2>",
    }
},

<template>
    <div class="msg-html" v-html="msg">         
    </div>
</template>

<style lang="scss" scoped>
    .msg-html {
        ::v-deep h2 {
            color: pink;
        }
    }
</style>>

v-html 解析富文本内容

  • 样式设置
    需要使用>>> ::v-deep /deep/ 这几个之一来穿透scoped。

v-html

© 版权声明

相关文章

暂无评论

none
暂无评论...