create.post.ts 162 B

12345678
  1. export default eventHandler(async (event) => {
  2. const body = await readBody(event)
  3. console.log(body)
  4. return {
  5. code: 200,
  6. msg: '创建成功',
  7. }
  8. })