Skip to content

Instantly share code, notes, and snippets.

@jcricaro
Created July 26, 2019 07:17
Show Gist options
  • Save jcricaro/417aa34790235525f4b2b00f67b2bee2 to your computer and use it in GitHub Desktop.
Save jcricaro/417aa34790235525f4b2b00f67b2bee2 to your computer and use it in GitHub Desktop.
Smarter Watchers
// watchers can have texts instead of functions
watch: {
searchText: 'fetchUserList'
}
// no need for created() this.fetchUserList()
watch: {
searchText: {
handler: 'fetchUserList',
immediate: true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment