-
Notifications
You must be signed in to change notification settings - Fork 5
/
02计算属性computed.html
55 lines (52 loc) · 951 Bytes
/
02计算属性computed.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>计算属性computed</title>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
<h2>{{ message }}</h2>
<br />
<input v-model="message">
<br />
<input v-model="a">
<br />
<input v-model="obj.age">
<br />
<input v-model="sum">
<br />
<input v-model="c">
</div>
</body>
<script>
var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!',
a:1,
b:2,
obj:{
name:'gr',
age:18
}
},
// 计算属性
computed: {
sum:function(){
return +this.a+(+this.obj.age)
},
c:{
get(){
return +this.a+this.b
},
set() {
console.log(111);
}
}
},
})
</script>
</html>