Files
my-bigScreen/screen-vue/src/views/desktop/index.vue

17 lines
361 B
Vue
Raw Normal View History

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
// 无需引入LayoutLayout已作为路由层的父组件
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>