example.ts 234 B

12345678910111213
  1. import { MockMethod } from 'vite-plugin-mock'
  2. export default [
  3. {
  4. url: '/getMapInfo',
  5. method: 'get',
  6. response: () => {
  7. return {
  8. code: 0,
  9. title: 'mock请求测试'
  10. }
  11. }
  12. }
  13. ] as MockMethod[]