mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-06 03:58:00 +08:00
15 lines
203 B
JavaScript
15 lines
203 B
JavaScript
const data = [];
|
|
module.exports = [
|
|
{
|
|
url: "/upload",
|
|
type: "post",
|
|
response(config) {
|
|
return {
|
|
code: 200,
|
|
msg: "success",
|
|
data: data,
|
|
};
|
|
},
|
|
},
|
|
];
|