My current issue involves passing information to another page. During testing without using routes, I was successful in passing information from one component to another. However, after implementing routes, clicking the event navigates to the other component but does not transfer the information to the new page. I have included the problematic code snippet below, but due to its length, I am unable to post the entire script. Any assistance would be greatly appreciated.
<router-link @click.native="$emit('viewDetails', model)" to="/modelDetails">
view details
</router-link>