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
- [Vuejs]-Can I access flags added by package @nuxtjs/device from the store?
- [Vuejs]-Vue styling components
Source:stackexchange.com