In the VueJs 2.0 docs I can\'t find any hooks that would listen on props changes.
props
Does VueJs have such hooks like onPropsUpdated() or simi
onPropsUpdated()
Have you tried this ?
watch: { myProp: { // the callback will be called immediately after the start of the observation immediate: true, handler (val, oldVal) { // do your stuff } } }
https://vuejs.org/v2/api/#watch