feat: fix development env and add generate component

This commit is contained in:
gushen610140
2025-08-19 15:25:03 +08:00
parent cd0af480e6
commit 4f49f607a3
6 changed files with 158 additions and 1 deletions

13
src/apis/example.ts Normal file
View File

@@ -0,0 +1,13 @@
import http from "@/utils/http";
const url = "";
const data = {};
export const exampleApi = () => {
return http({
url,
method: "POST",
data,
});
};