-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
52 lines (50 loc) · 2.35 KB
/
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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vue.js实例</title>
</head>
<body>
<h1>Vue2.0实例</h1>
<hr>
<h2>一:内部指令</h2>
<ol>
<li><a href="./example/helloWorld.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&v-html实例</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>
<li><a href="./example/others.html">v-pre & v-cloak & v-once</a></li>
</ol>
<h2>二:全局API</h2>
<ol>
<li><a href="./example/vue.directive.html">vue.directive 自定义指令</a></li>
<li><a href="./example/vue.extend.html">vue.extend 构造器的延申</a></li>
<li><a href="./example/vue.set.html">vue.set 全局</a></li>
<li><a href="./example/shengmingzhouqi.html">vue的生命周期</a></li>
<li><a href="./example/template.html">template制作模板</a></li>
<li><a href="./example/component-1.html">component-1组件初识</a></li>
<li><a href="./example/component-2.html">Component 组件props 属性设置</a></li>
<li><a href="./example/component-3.html">Component 父子组件关系</a></li>
<li><a href="./example/component-4.html">Component 标签</a></li>
</ol>
<h2>三:构造器里的选项</h2>
<ol>
<li><a href="./example/propsData.html">propsData Option</a></li>
<li><a href="./example/computed.html">computed Option</a></li>
<li><a href="./example/methods.html">methods Option</a></li>
<li><a href="./example/watch.html">watch Option</a></li>
<li><a href="./example/mixins.html">mixins Option</a></li>
<li><a href="./example/extends.html">extends Option</a></li>
</ol>
<h2>四:Vue实例和内置组件</h2>
<ol>
<li><a href="./example/example01.html">example methods</a></li>
<li><a href="./example/example02.html">example methods</a></li>
<li><a href="./example/example03.html">example methods 实例事件</a></li>
<li><a href="./example/slot.html">内置组件 -slot</a></li>
</ol>
</body>
</html>