-
Notifications
You must be signed in to change notification settings - Fork 476
/
04 Mutation Methods.html
83 lines (79 loc) · 2.27 KB
/
04 Mutation Methods.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="vue.js"></script>
<style>
.blue {
color: blue;
}
</style>
</head>
<body>
<!--
Vue.js 包装了被观察数组的变异方法,故它们能触发视图更新。被包装的方法有:
-->
<div id="example-1">
<ul>
<template v-for="item in items">
<li>{{ item.msg }}</li>Í
</template>
</ul>
<div class="blue">
{{$data | json }}
</div>
<pre>
Vue.js 包装了被观察数组的变异方法,故它们能触发视图更新。被包装的方法有:
push()
向数组的末尾添加一个或更多元素,并返回新的长度。
example1.items.push({msg:'台湾小凡'})
pop()
用于删除并返回数组的最后一个元素。
example1.items.pop()
shift()
删除并返回数组的第一个元素
example1.items.shift()
unshift()
向数组的开头添加一个或更多元素,并返回新的长度。
example1.items.unshift({msg:'台湾小凡'})
splice()
从某个已有的数组返回选定的元素
example1.items.splice()
sort()
对数组的元素进行排序
example1.items.sort()
reverse
颠倒数组中元素的顺序。
example1.items.reverse()
你可以打开浏览器的控制台,用这些方法修改上例的 items 数组。
例如:example1.items.push({ message: 'Baz' })。
</pre>
</div>
<script>
var example1 = new Vue({
el: '#example-1',
data: {
items: [{
msg: 'Foo'
}, {
msg: 'Bar'
}, {
msg: 'George'
}, {
msg: 'John'
}, {
msg: 'Thomas'
}, {
msg: 'James'
}, {
msg: 'Adrew'
}, {
msg: 'Martin'
}
]
}
})
</script>
</body>
</html>