18 lines
285 B
Vue
18 lines
285 B
Vue
|
|
<template>
|
||
|
|
<div class="api-management">
|
||
|
|
<h1>API管理页面</h1>
|
||
|
|
<p>API管理功能开发中...</p>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup>
|
||
|
|
import { useRouter } from 'vue-router'
|
||
|
|
|
||
|
|
const router = useRouter()
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
.api-management {
|
||
|
|
padding: 20px;
|
||
|
|
}
|
||
|
|
</style>
|