Nuxt/examples/composables/use-fetch/server/api/[...hello].ts
Qin Guan 2156079405
docs(examples): rename hello.ts to [...hello].ts (#5261)
Co-authored-by: pooya parsa <pyapar@gmail.com>
2022-06-22 19:25:27 +02:00

5 lines
121 B
TypeScript

export default defineEventHandler(event => ({
path: '/api/' + event.context.params.hello,
query: useQuery(event)
}))