LinHaiBlog

导航

v-html注入的html内容,写的样式不生效

解决方法: 去掉scoped,使用全局样式

<div v-html="srcList" class="chartBox">
<style lang="scss">
.chartBox {
  overflow: auto;
}

.chartBox svg {
  width: 100%;
  /* 或者你想要的具体宽度,例如 200px */
  height: auto;
  /* 保持纵横比 */
}
</style>

产生原因:局部样式挂在不上

posted on 2024-09-10 11:16  林海世界  阅读(27)  评论(0编辑  收藏  举报