[Vuejs]-Get id value of url in another component passed via props – vue

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.

Leave a comment