vue中可通过v-html来显示html内容
<div v-html="myHtml"></div>
data:{
myHtml:'<img src="https://www.jianshu.com/writer#/notebooks/29223536/"/>'
}
也可使用{{{}}},2.0之后不推荐使用
<pre></pre>
此标签我只在json数据格式化展示时用过
我认为就是可以识别\n\t等转义字符
<pre>{{jsonData}}</pre>
json数据格式化展示
网友评论