Initial commit: first version of project

This commit is contained in:
duyufeng
2025-09-16 17:27:55 +08:00
commit b9024cd644
45 changed files with 9230 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<!-- 面板主页 -->
<template>
<div class="dashboard">
<div class="dashboard-container">
<div class="dashboard-text">欢迎来到面板首页</div>
</div>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue'
</script>
<style lang="less" scoped>
.dashboard {
height: 100%;
}
</style>