-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 958 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Vue.js实例</title>
<script type="text/javascript" src="assets/js/vue.js">
</script>
</head>
<body>
<h1>Vue2.0实例</h1>
<hr>
<h2>第一季Vue.js的简单指令</h2>
<ol>
<li><a href="index.html">Hello world</a></li>
<li><a href="example/v-if.html">v-if,v-else,v-show</a></li>
<li><a href="example/v-for.html">v-for</a></li>
<li><a href="example/v-text.html">v-text</a></li>
<li><a href="example/v-on.html">v-on</a></li>
<li><a href="example/v-model.html">v-model</a></li>
<li><a href="example/v-bind.html">v-bind</a></li>
</ol>
<h2>第二季Vue.js的API</h2>
<ol>
<li><a href="example/Vue.directive.html">Vue.directive</a></li>
</ol>
</body>
</html>