I am currently working with a list of items sourced from a JSON file and looping through them. However, I want to create individual details pages for each item using VueRouter.
Any advice on how I can accomplish this? I am facing difficulties in passing the data to the template of the details page.
Thank you
<ul>
<li v-for="project in projects.projects">
{{ project.name }}
<router-link :to="profileLink" class="button is-outlined">View Details</router-link>
{{ project.coding }}
{ project.design }}
{{ project.description }}
</li>
</ul>