diff --git a/content/guides/frontend/inertia.md b/content/guides/frontend/inertia.md
index 196bb4f..007e770 100644
--- a/content/guides/frontend/inertia.md
+++ b/content/guides/frontend/inertia.md
@@ -676,8 +676,11 @@ The `share` method may be called before the request passes through all middlewar
### Accessing shared data
-Shared data is automatically included in the props for every page. When you define page props using the `InertiaProps` type helper, it includes both your page-specific props and all shared data.
+Shared data is automatically included in the props for every page. In React, when you define page props using the `InertiaProps` type helper, it includes both your page-specific props and all shared data. In Vue, use `usePage`.
+::::tabs
+
+:::tab{title="React"}
```tsx title="inertia/pages/posts/index.tsx"
import { InertiaProps } from '~/types'
import { Data } from '@generated/data'
@@ -702,6 +705,45 @@ export default function PostsIndex(props: PageProps) {
)
}
```
+:::
+
+:::tab{title="Vue"}
+```vue title="inertia/pages/posts/index.vue"
+
+
+
+ Welcome, {{ user.name }}
+
+
+```
+:::
+
+::::
## Pagination