You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/v2/guide/syntax.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ You can also perform one-time interpolations that do not update on data change b
30
30
31
31
### Raw HTML
32
32
33
-
The double mustaches interprets the data as plain text, not HTML. In order to output real HTML, you will need to use the `v-html` directive:
33
+
The double mustaches interprets the data as plain text, not HTML. In order to output real HTML, you will need to use the [`v-html` directive](../api/#v-html):
34
34
35
35
```html
36
36
<p>Using mustaches: {{ rawHtml }}</p>
@@ -60,7 +60,7 @@ The contents of the `span` will be replaced with the value of the `rawHtml` prop
60
60
61
61
### Attributes
62
62
63
-
Mustaches cannot be used inside HTML attributes. Instead, use a [v-bind directive](../api/#v-bind):
63
+
Mustaches cannot be used inside HTML attributes. Instead, use a [`v-bind` directive](../api/#v-bind):
0 commit comments