0
Props are for passing data downwards from parent to child. To send data upwards from child to parent, emit
and event from child and listen to it in parent.
this.$emit('clicked', 'someValue')
Another option would be using a global state store like Vuex.
Source:stackexchange.com