方案一:textarea输入,textarea显示

方案二:v-html、innerHTML、.html()

value: {{value}}

JSON.stringify(value): {{JSON.stringify(value)}}

原样输出

v-html:

innerHTML:

.html():

替换成br,但是不转义实体编码

v-html:

innerHTML:

.html():

替换成br,且转义成实体编码

v-html:

innerHTML:

.html():


方案三:v-text、innerText、textContent、.text()

value: {{value}}

JSON.stringify(value): {{JSON.stringify(value)}}

v-text:

innerText:

textContent:

.text():


特殊标签 `<pre>`

value: {{value}}

JSON.stringify(value): {{JSON.stringify(value)}}

{{value}}

特殊标签 `<pre>`

value: {{value}}

JSON.stringify(value): {{JSON.stringify(value)}}

{{item}}: {{value}}



{{str}}
{{str}}
微信公众号-前端linong