Vue 中 filters,computed, methods, watch 的总结

(1)计算属性将被混入到 Vue 实例中, 即this 上下文自动地绑定为 Vue 实例,但是计算属性使用了箭头函数,则 this 不会指向这个组件的实例。(2)计算后的属性不需要在data中定义。(3)computed属性有依赖缓存...