mirror of
https://github.com/ProudMuBai/GoFilm.git
synced 2026-02-04 06:54:41 +08:00
25 lines
323 B
Vue
25 lines
323 B
Vue
<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 {
|
|
|
|
}
|
|
|
|
|
|
</style> |