[Vuejs]-How to access shared data from a layout component in Vue/Inertiajs

1👍

You can use the $page property or the usePage() hook.

<Header :user="$page.props.auth.user" />
const user = computed(() => usePage().props.value.auth.user)

If you scroll down the the link you have given you will know it.

Leave a comment