mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-24 10:16:06 +03:00
7 lines
121 B
TypeScript
7 lines
121 B
TypeScript
const startAt = Date.now()
|
|
let count = 0
|
|
|
|
export default defineEventHandler(() => ({
|
|
pageview: count++,
|
|
startAt,
|
|
}))
|