Created
November 17, 2017 01:43
-
-
Save yejiang1015/293b1e6610b0c06b7cc297994cf6eb04 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 1 | |
| watch: { | |
| watchObj: { | |
| deep: true, | |
| handler(val) { | |
| console.log(val, 'watchVal'); | |
| } | |
| } | |
| } | |
| // 2 | |
| watch: { | |
| watchObj(val) { | |
| console.log(val, 'watchVal'); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment