就是关于vuejs的官方文档中,计算属性中说道 Date.now() 不是响应式依赖
那这个函数的意思是在{{ now }}中不会改变吗?
computed只会得到一次,就是首次调用的那次
以下代码也是,都被缓存起来了
let vm = new Vue({ data() { return { nowCopy: }; }, computed: { now: { get() { return Date.now(); }, } } } console.log(vm.now); setTimeout(() => { console.log(vm.now); }, 2000);
2.1m questions
2.1m answers
60 comments
57.0k users