feat: fix development env and add generate component
This commit is contained in:
13
src/apis/example.ts
Normal file
13
src/apis/example.ts
Normal 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
BIN
src/assets/hucky.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 888 KiB |
10
src/components/ExampleComponent.vue
Normal file
10
src/components/ExampleComponent.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<script lang="ts" setup>
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
</style>
|
||||
Reference in New Issue
Block a user