computed是一个有计算能力的属性,一个能将计算结果缓存起来的属性
<html><body><div id="app"><!-- 函数 -->{{ getCurrentTime() }}</br><!-- computed -->{{ getCurrentTime1 }}</div></body><script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script><script>new Vue({//指定作用于那一个divel:'#app',//属性data:{myMouseX:10},methods:{getCurrentTime:function(){return Date.now();}},computed:{getCurrentTime1:function(){return Date.now();}}});</script></html>
