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()
I work with a computed property like:
items:{ get(){ return this.resources; }, set(v){ this.$emit("update:resources", v) } },
Resources is in this case a property:
props: [ 'resources' ]