Reading through the Inertia docs and exploring this demo...
Couldn't help but noticing that in e.g. Layout.vue, shared data is accessed as $page.auth.user instead of $page.props.auth.user (as described in the current docs).
Is this a change in the newer version?
Also, isn't this more prone to errors because you can overwrite props from the actual page?
Reading through the Inertia docs and exploring this demo...
Couldn't help but noticing that in e.g. Layout.vue, shared data is accessed as
$page.auth.user
instead of$page.props.auth.user
(as described in the current docs).Probably missing something :)