Add HomeView component with template and styles for the home page
This commit is contained in:
15
src/views/HomeView.vue
Normal file
15
src/views/HomeView.vue
Normal 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>
|
||||||
|
|
||||||
Reference in New Issue
Block a user