Add HomeView component with template and styles for the home page

This commit is contained in:
2025-12-10 17:03:26 +08:00
parent 7f47220610
commit f449a9cb3b

15
src/views/HomeView.vue Normal file
View File

@@ -0,0 +1,15 @@
<script setup lang="ts"></script>
<template>
<div class="home-view">
<h1>首页</h1>
<el-button type="primary">欢迎使用 RMS 系统</el-button>
</div>
</template>
<style scoped>
.home-view {
padding: 20px;
}
</style>