解决vue中v-html元素中标签样式失效问题

  • Post author:
  • Post category:vue


加上

scope

d会导致 v-html 下绑定的标签样式不生效


解决方案:

定义两个style标签,一个加上scoped属性,一个不加上scoped属性

<style lang="less" scoped>
.viewDetail {
  .tip {
    margin-bottom: 0.47rem;
    background: #e5f1fe;
    height: 0.8rem;
    font-size: 0.28rem;
    font-weight: 400;
    color: #35528e;
    line-height: 0.8rem;
    padding-left: 0.3rem;
    padding-right: 0.27rem;
<style lang="less">
.viewContent {
  margin-top: 0.66rem;
  p {
    font-size: 0.34rem;
    font-weight: 400;
    color: #333333;
    line-height: 0.6rem;
  }
  h1 {
    font-size: 0.4rem;
    font-weight: 500;
    color: #2e2f33;
    line-height: 0.56rem;
  }
  h2 {
    font-size: 0.36rem;
    font-weight: 500;
    color: #2e2f33;
    line-height: 0.5rem;
  }
  li,
  h3 {
    font-size: 0.34rem;
    font-weight: 500;
    color: #35528e;
    line-height: 0.48rem;
  }
}
</style>



版权声明:本文为yuanwen52原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。