使用渲染包含标签的富文本,图片显示超出了屏幕的显示范围
解决方式:
复制代码<rich-text :nodes="info.content|replaceContent"/>
filters: {
replaceContent(value) {
return value.replace(/<img/g, "<img style='width:100%'");
}
}
使用渲染包含标签的富文本,图片显示超出了屏幕的显示范围
解决方式:
复制代码<rich-text :nodes="info.content|replaceContent"/>
filters: {
replaceContent(value) {
return value.replace(/<img/g, "<img style='width:100%'");
}
}