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,
});
};

BIN
src/assets/hucky.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 888 KiB

View File

@@ -0,0 +1,10 @@
<script lang="ts" setup>
</script>
<template>
<div>
</div>
</template>
<style scoped>
</style>