Category: Composables

Getting the Current Path

Use useRoute to get the path of the current page.

More ...

Dynamic Page Transition

Trigger a page transition dynamically with useRouter.

More ...

Fetch data with useFetch

You can fetch data from the server directly in the component.

More ...

Fetch data with custom logic

If you have custom fetching logic, you can wrap the logic inside useAsyncData.

More ...

The useState Composable

You can init a state on the server side using useState.

More ...

Setting <head> tags of a Page

You can set <title>, <meta>, and <link> with the useHead composable.

More ...