Browse Source

escape {{ }} instances in index.html

1.0
Chris Fritz 9 years ago
parent
commit
90cae8996b
  1. 10
      template/index.html

10
template/index.html

@ -7,23 +7,23 @@
<body>
<div id="app">
<img src="https://vuejs.org/images/logo.png" alt="Vue logo">
<h1>{{ greeting }}</h1>
<h1>\{{ greeting }}</h1>
<ul>
<li>
To learn more about Vue, visit
<a href="{{ docsURL }}" target="_blank">
{{ humanizeURL(docsURL) }}
<a href="\{{ docsURL }}" target="_blank">
\{{ humanizeURL(docsURL) }}
</a>
</li>
<li>
For live help with simple questions, check out
<a href="{{ gitterURL }}" target="_blank">
<a href="\{{ gitterURL }}" target="_blank">
the Gitter chat
</a>
</li>
<li>
For more complex questions, post to
<a href="{{ forumURL }}" target="_blank">
<a href="\{{ forumURL }}" target="_blank">
the forum
</a>
</li>

Loading…
Cancel
Save