mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-05 19:42:08 +08:00
23 lines
458 B
TypeScript
23 lines
458 B
TypeScript
import { MockMethod, Recordable } from 'vite-plugin-mock';
|
|
|
|
interface response {
|
|
body: Recordable;
|
|
query: Recordable;
|
|
}
|
|
|
|
export default [
|
|
{
|
|
url: '/api/login',
|
|
method: 'post',
|
|
response: ({ body, query }: response) => {
|
|
console.log('body>>>>>>>>', body);
|
|
console.log('query>>>>>>>>', query);
|
|
return {
|
|
code: 200,
|
|
message: 'ok',
|
|
data: { name: 'Evan', age: 26 },
|
|
};
|
|
},
|
|
},
|
|
] as MockMethod[];
|