I have a problem with passing data from my rest API to the child component,
I have a list with many records, after a click on title i want to open another page with details of this clicked element, here is my code:
My router in table:
<router-link
to="/user/details"
v-slot="{ href, route, navigate }"
>
<a
:href="href"
@click="navigate"
>
{{ user.name }}
</a>
</router-link>
My user/details page:
<template>
<div>
<div class="flex flex-wrap">
<div class="w-full mb-12 xl:mb-0 px-4">
//HOW TO USE THIS MY user.name FROM ROUTER?
</div>
</div>
</div>
</template>
<script>
export default {
components: {}
};
</script>
{
path: "/user/details",
component: UserDetails
}