-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc23.html
40 lines (37 loc) · 1.17 KB
/
c23.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>计算属性与函数的区别</title>
<script src="vue.js"></script>
</head>
<body>
<div id="app">
<p>{{msg1()}}</p>
<p>{{msg1()}}</p>
<p>{{msg1()}}</p>
<p>{{msg2}}</p>
<p>{{msg2}}</p>
<p>{{msg2}}</p>
</div>
<script>
let app = new Vue({
el: "#app",
data: { //这里是MVVM中的Model
},
methods: { // 专门用于存储监听事件的回调函数
msg1: function () {
console.log("函数被执行了");
return "asdfg".split("").reverse().join("")
}
},//函数的特点:每次调用都都会执行
computed: { // 用于
msg2: function () {
return "asdfg".split("").reverse().join("")
}//计算属性的特点 只要返回的结果没有发生变化,那么计算属性就只会被执行一次
//由于计算属性会将返回的结果缓存起来,所以如果返回的数据不经常发生变化的话,那么使用计算属性会提高页面性能
}
})
</script>
</body>
</html>