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