mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
export default defineEventHandler(async () => {
|
|
await timeout(20)
|
|
return 'that was very long ...'
|
|
})
|
|
function timeout (ms: number) {
|
|
return new Promise(resolve => setTimeout(resolve, ms))
|
|
}
|