I cannot pass data from parent to child. I am using props, have tried returning data as well - no luck. I have a panel component (which is parent) with data and panelBody co
the sync has changed in vue2.
https://vuejs.org/v2/guide/components.html#sync-Modifier
you should use it this way
selected = val">
and on child
this.$emit('update:selected', shelf)
OR you could do just this
this.$emit("select")