Files

11 lines
219 B
TypeScript
Raw Permalink Normal View History

2026-07-10 18:55:55 +08:00
import { defineEventHandler, readBody } from 'h3'
export default defineEventHandler(async (event) => {
const body = await readBody(event)
console.log(body)
return {
code: 200,
msg: '创建成功',
}
})