Tutorial by Examples

You can watch data property of any Vue instance. When watching a property, you trigger a method on change: export default { data () { return { watched: 'Hello World' } }, watch: { 'watched' () { console.log('The watched property ha...

Page 1 of 1