1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-03-02 11:42:43 +00:00
Nuxt/test/fixtures/basic/server/api/random.ts

4 lines
121 B
TypeScript
Raw Normal View History

export default defineEventHandler(() => {
return new Array(10).fill(0).map(() => Math.round(Math.random() * 10000))
})