computed:
1.computed是自己單獨設定的計算屬性(不能和DATA中的衝突)
2.一般監聽的屬性要有依賴關係
3.不支援非同步(get執行時必須有返回值,就是conputed拿到結果)
4.計算屬性有快取,只要以來的值不改變,就一直拿的上一次的值
watch:
1.watch只能監聽DATA中有的屬性(watch監聽的響應式資料必須在data中初始化)
2.支援非同步操作
複製程式碼
computed 和 watch的區別??
相關文章
- computed和watch的區別
- computed watcher和user watcher的區別
- vue watch 和 computed 區別與使用Vue
- Vue中computed和watch的區別(轉載)Vue
- Vue中computed、methods和watch之間的區別Vue
- Vue 基礎自查——watch、computed和methods的區別Vue
- vue中computed/method/watch的區別Vue
- Vue中watch、computed與methods的聯絡和區別Vue
- vue中methods,computed,watch方法的區別Vue
- Vue常考知識點--computed 和 watch 區別Vue
- Vue.js 的 computed 屬性和 watch 的區別在哪裡?Vue.js
- Vuejs中關於computed、methods、watch的區別VueJS
- vue之computed和watchVue
- vue2.x版本中computed和watch的使用入門詳解-關聯和區別Vue
- Vue中計算屬性computed與偵聽器watch的區別Vue
- Vue.js中 computed 和 methods 的區別Vue.js
- vue原始碼中computed和watch的解讀Vue原始碼
- Vue computed 與 watchVue
- 在微信小程式裡使用 watch 和 computed微信小程式
- Vue核心知識-computed和watch的使用場景和方法Vue
- vue2.x版本中computed和watch的使用入門詳解-computed篇Vue
- 端午總結Vue3中computed和watch的使用Vue
- vue2.x版本中computed和watch的使用入門詳解-watch篇Vue
- angular attrs.$observe和$scope.$watch的區別Angular
- Vue中computed的本質—lazy WatchVue
- vue入門筆記體系(四)computed和watchVue筆記
- 華為watch gt運動版和活力版有啥區別?華為watchgt運動版和活動版區別對比
- vue深究第一彈:computed與watch的異同Vue
- Vue.js 深入理解 computed 與 watchVue.js
- vue.js 中 data, prop, computed, method,watch 介紹Vue.js
- ../和./和/的區別
- 和 的區別
- as 和 with的區別
- ||和??的區別
- /*和/**的區別
- LinkedList和ArrayList的區別、Vector和ArrayList的區別
- http和https的區別/get和post的區別HTTP
- Vue原理解析(九):搞懂computed和watch原理,減少使用場景思考時間Vue