init project

This commit is contained in:
Timi
2026-04-03 12:02:34 +08:00
parent d4bef26c96
commit 2665acc885
36 changed files with 5725 additions and 218 deletions

View File

@@ -0,0 +1,25 @@
<template>
<div class="page">
<route-placeholder title="状态页" description="这里保留为服务器状态入口,用于验证底部标签切换和服务日志页前进返回动画。" />
<t-button block variant="outline" @click="openServerLogs">
查看服务日志页
</t-button>
</div>
</template>
<script setup lang="ts">
const router = useRouter();
async function openServerLogs(): Promise<void> {
await router.push("/server/logs");
}
</script>
<style scoped lang="less">
.page {
gap: 1rem;
display: flex;
padding: 1.2rem;
flex-direction: column;
}
</style>