这篇文章已经发布超过一年了,内容可能已经过时,请谨慎参考。
模板语法
一、文本插值
Mustache
语法
VUE
1
<span>Message: {{ msg }}</span>
双大括号标签会被替换为相应组件实例中 msg 属性的值。同时每次 msg 属性更改时它也会同步更新。
二、指令
v-html
指令
VUE
1
2
<p>Using text interpolation: {{ rawHtml }}</p>
<p>Using v-html directive: <span v-html="rawHtml"></span></p>
Using text interpolation:
a
< span style=“color:red”>This should be red. `
Using v-html directive: This should be red.