1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-02 10:43:28 +00:00
Nuxt/test/fixtures/basic/server/api/useAsyncData/count.ts

10 lines
207 B
TypeScript

let counter = 0
const test = () => () => {
// TODO: useNuxtApp should be undefined when type-testing a nitro route
useNuxtApp()
}
test()
export default defineEventHandler(() => ({ count: counter++ }))