16 lines
237 B
Vue
16 lines
237 B
Vue
|
|
<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>
|
||
|
|
|