From 168f045087fad33ca857cd07489b863e108cd736 Mon Sep 17 00:00:00 2001 From: HasutoSasaki Date: Mon, 21 Jul 2025 22:27:53 +0900 Subject: [PATCH] docs: Added explanation and link to Nuxt3 example. --- docs/openapi-fetch/examples.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/openapi-fetch/examples.md b/docs/openapi-fetch/examples.md index 7adc6b647..a987803c0 100644 --- a/docs/openapi-fetch/examples.md +++ b/docs/openapi-fetch/examples.md @@ -34,6 +34,12 @@ _Note: if you’re using Svelte without SvelteKit, the root example in `src/rout [View a code example in GitHub](https://github.com/openapi-ts/openapi-typescript/tree/main/packages/openapi-fetch/examples/vue-3) +## Nuxt 3 + +[Nuxt 3](https://nuxtjs.org/) is a popular SSR framework for Vue 3. By combining Nuxt's built-in [useAsyncData](https://nuxt.com/docs/api/composables/use-async-data) composable with openapi-fetch, you can easily implement type-safe API communication with server-side rendering. + +[View a code example in GitHub](https://github.com/HasutoSasaki/nuxt3-openapi-typescript-example) + --- Additional examples are always welcome! Please [open a PR](https://github.com/openapi-ts/openapi-typescript/pulls) with your examples.