v-text和v-html的区别
- v-text和
{{}}一样 - v-text不解释标签,v-html解释标签
- 解释html标签可能导致xss攻击,不要使用用户提供的内容插值
|
|
效果:
{{}}:<strong>Hello</strong> Vue!
v-text:<strong>Hello</strong> Vue!
v-html:Hello Vue!
{{}}一样
|
|
效果:
{{}}:<strong>Hello</strong> Vue!
v-text:<strong>Hello</strong> Vue!
v-html:Hello Vue!