In the VueJs 2.0 docs I can\'t find any hooks that would listen on props
changes.
Does VueJs have such hooks like onPropsUpdated()
or simi
I use props
and variables computed
properties if I need create logic after to receive the changes
export default {
name: 'getObjectDetail',
filters: {},
components: {},
props: {
objectDetail: {
type: Object,
required: true
}
},
computed: {
_objectDetail: {
let value = false
...
if (someValidation)
...
}
}