mirror of
https://github.com/EasyTierMC/ETMC.Web.git
synced 2025-12-10 22:35:49 +08:00
feat: 重构布局并添加监控和提交节点页面
This commit is contained in:
@@ -1,9 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
import TheWelcome from '../components/TheWelcome.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<main>
|
||||
<TheWelcome />
|
||||
</main>
|
||||
<section style="padding:2rem; text-align:center;">
|
||||
<h2>欢迎来到 EasyTierMC Uptime</h2>
|
||||
<p>使用上方导航查看节点监控或提交新的节点。</p>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
10
src/views/MonitorView.vue
Normal file
10
src/views/MonitorView.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<template>
|
||||
<div>
|
||||
<h2>节点监控</h2>
|
||||
<p>这里是节点监控页面。</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
// 可根据需要添加逻辑
|
||||
</script>
|
||||
10
src/views/SubmitView.vue
Normal file
10
src/views/SubmitView.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<template>
|
||||
<div>
|
||||
<h2>提交节点</h2>
|
||||
<p>这里是提交节点页面。</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
// 可根据需要添加逻辑
|
||||
</script>
|
||||
Reference in New Issue
Block a user