mirror of
https://github.com/ProudMuBai/GoFilm.git
synced 2026-05-21 22:27:28 +08:00
add BAM
This commit is contained in:
27
client/src/views/manage/Index.vue
Normal file
27
client/src/views/manage/Index.vue
Normal 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>
|
||||
Reference in New Issue
Block a user