<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://unpkg.com/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
<p>{{ message }}</p>
<p>{{ getFullName() }}</p>
<p>{{ getFullName() }}</p>
<p>{{ getFullName() }}</p>
<p>{{ fullName }}</p>
<p>{{ fullName }}</p>
<p>{{ fullName }}</p>
</div>
<script>
const app = new Vue({
el: '#app',
data: {
message: 'Hello Vue.js!',
firstName: "thomas",
lastName: "zhang",
},
methods: {
getFullName: function() {
console.log("getFullName");
return this.firstName + ' ' + this.lastName;
}
},
computed: {
fullName: function() {
console.log("fullName");
return this.firstName + ' ' + this.lastName;
}
}
})
</script>
</body>
</html>
vue methods和computed效率比较
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
上一篇:let var作用域
下一篇:vue computed

提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
vue中的computed和methods的区别
computed与methods
computed methods 区别 -
Vue中computed、methods和watch之间的区别
对于那些开始学习Vue的人来说,对于方法、计算属性和观察者之间的区别有点混淆。尽管通常可以使用它们中的每一个来完成或多或少相同的事情,但了解每个人在
vue methods computed watch 数据 -
vue实例属性之methods和computed
本篇文章介绍vue实例属性中methods和computed的区别。
前端框架 vue.js 自定义 数据 缓存