This commit is contained in:
mubai
2023-12-23 22:32:52 +08:00
parent d85dbe915c
commit b48e53a637
151 changed files with 12451 additions and 1382 deletions

View File

@@ -0,0 +1,27 @@
<template>
<div class="container">
<h3>管理后台首页, 不知道放点啥, 先空着</h3>
</div>
</template>
<script setup lang="ts">
import {onMounted} from "vue";
import {ApiGet} from "../../utils/request";
onMounted(()=>{
ApiGet('/manage/index')
})
</script>
<style scoped>
.container {
//background: url("/src/assets/image/managebg.png");
//width: 100vw;
//height: 100vh;
}
</style>