[Vuejs]-Display props of a component in a table format Vue

0👍

If your components pages are in the same level so you can do it easily with $emit event:
Page1:

created(){
this.$emit('emitName',propToSend)
}

Page2:
Will get the ‘propToSend’ as a prop like perents & children

Leave a comment