mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
10 lines
207 B
TypeScript
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++ }))
|