computed 与methods , watched 的区别

Posted guangzhou11

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了computed 与methods , watched 的区别相关的知识,希望对你有一定的参考价值。

computed 与watched 的区别: 异步请求 数据变化 使用watched ,计算属性不支持异步 计算一个值的结果 用 computed

computed 与methods的区别: computed 有缓存 当数据的值没有改变的时候 我们不会重新执行方法,而 methods 会

以上是关于computed 与methods , watched 的区别的主要内容,如果未能解决你的问题,请参考以下文章

Vue--computed计算属性监听数据变化----与watch,methods对比

VueVue的依赖追踪系统 ——搞懂methods watch和compute

vue的watch、methods 和 computed 的区别

computed watch methods

Watch,computed和methods的区别

Vue中watch-computed-methods