2026-02-24 23:26:41 +08:00
|
|
|
|
<template>
|
2026-03-01 21:28:05 +08:00
|
|
|
|
<!-- Dashboard自身的内容(后台首页) -->
|
|
|
|
|
|
<div class="dashboard-container">
|
|
|
|
|
|
<h1>后台首页</h1>
|
|
|
|
|
|
<div class="stats">数据概览、快捷入口等</div>
|
2026-02-24 23:26:41 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2026-03-01 21:28:05 +08:00
|
|
|
|
// 无需引入Layout,Layout已作为路由层的父组件
|
2026-02-24 23:26:41 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
2026-03-01 21:28:05 +08:00
|
|
|
|
.dashboard-container {
|
|
|
|
|
|
padding: 20px;
|
2026-02-24 23:26:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
</style>
|