vuejs / Discussion

Vue.js discussion
167 stars 17 forks source link

computed property change event #390

Closed lilchow closed 9 years ago

lilchow commented 9 years ago

When the value of a computed property changes, will it or vm emit some event that other part of the program can listen to?

Kerruba commented 9 years ago

Maybe you can try to emit your own event, using vm.$emit or vm.$dispatch?

lilchow commented 9 years ago

Thanks a lot!