vue v-html富文本无法修改 vue通过v-html指令渲染的富文本无法修改样式的解决方案
jrue 人气:01.问题描述
在最近的vue项目中遇到的问题:v-html渲染的富文本,无法在样式表中修改样式。
代码如下,div.article-context里面的图片修改成自适应,但是没有任何效果。
<div class="article-context" v-html="post.content"></div> <style scoped> .article-context img { width: auto; height: auto; max-width: 100%; max-height: 100%; } </style>
2.分析原因
这是为什么呢?原因很简单:如果图片(img标签)在template中先写出来,那么在<style>标签中是可以修改其样式的。
我猜,这应该是vue编译的规范吧,未在虚拟dom中渲染的元素无法修改样式。
3.解决方案
解决方案1(推荐):在updated生命周期函数中,js动态设置样式,代码如下:
<script> import $ from 'jquery' export default { updated() { $('.article-context').find('img').css({ "width": "auto", "height": "auto", 'max-width': '100%', 'max-height': '100%' }); } </script>
解决方案2(不推荐):去掉style标签中的scoped属性;至于原因?没有仔细研究,我在使用过程出现富文本编辑器无法初始化的问题。
<style> .article-context img { width: auto; height: auto; max-width: 100%; max-height: 100%; } </style>
加载全部内容