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.
- [Vuejs]-Vue: Unable to call component multiple times with different parameters
- [Vuejs]-VueJS array not updating
Source:stackexchange.com