-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1020 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Vue</title>
<!-- bower:css -->
<!-- endbower -->
<link href="css/main.css" rel="stylesheet">
</head>
<body class="background-pink">
<div class="page" id="app">
<greeting :greeting='greeting'></greeting>
<generator></generator>
<div class="section">
<ul>
<li>
To learn more about Vue, visit
<a :href="docsURL" target="_blank">
{{ humanizeURL(docsURL) }}
</a>
</li>
<li>
For live help with simple questions, check out
<a :href="gitterURL" target="_blank">
the Gitter chat
</a>
</li>
<li>
For more complex questions, post to
<a :href="forumURL" target="_blank">
the forum
</a>
</li>
</ul>
</div>
</div>
<!-- bower:js -->
<!-- endbower -->
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="js/bundle.js"></script>
</body>
</html>