vue-v指令

vue api里面有所有的语法,指令等

vue的v指令

循环指令:v-for

1
v-for='value in values'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="./vue.js" charset="utf-8"></script>
</head>
<body>
<div id="app">
<ul>
<li v-for='i in message'> {{ i }} </li>
</ul>
</div>
<script>
let vue = new Vue({
el: '#app',
data: {
message: ['1','2','3','4']
}
})
</script>
</body>
</html>

事件指令:v-on

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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="./vue.js" charset="utf-8"></script>
</head>
<body>
<div id="app">
<p> 计数: {{ num }} </p>
<!-- 简单的数据可以直接操作 -->
<!-- <button v-on:click="num++">+</button> -->
<!-- <button v-on:click="num--">一</button> -->

<!-- 复杂的操作可通过调用函数 -->
<button v-on:click="add">+</button>
<!-- 除了可以使用v-on指令,还可以使用@来简写 -->
<button @click="sub"></button>
</div>
<script>
var vue = new Vue({
el: "#app",
data: {
num: 0
},
// 定义函数
methods: {
add(){
// 取num的值,需要使用this,因为都属于vue这个对象
this.num = this.num + 1
},
sub: function(){
this.num--
}
}
})
</script>
</body>
</html>