Skip to content

Instantly share code, notes, and snippets.

@fanghm
Created September 30, 2017 02:29
Show Gist options
  • Save fanghm/4abc81f1d32ee81edb0eb5ef38a96837 to your computer and use it in GitHub Desktop.
Save fanghm/4abc81f1d32ee81edb0eb5ef38a96837 to your computer and use it in GitHub Desktop.
Vue.js - watcher

Vue 通过 watch 选项提供一个更通用的方法,来响应数据的变化。当你想要在数据变化响应时,执行异步操作或开销较大的操作,这是很有用的。 除了 watch 选项之外,您还可以使用 vm.$watch API 命令。

Refer: https://cn.vuejs.org/v2/guide/computed.html#观察者

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment