Home.vue 373 B

123456789101112131415161718
  1. <script setup lang="ts">
  2. import { ref } from "vue";
  3. </script>
  4. <template>
  5. <article class="home-page">
  6. <h1 class="title">主页-HOME</h1>
  7. <router-link to="/login">
  8. <el-button size="large" type="primary">登录</el-button>
  9. </router-link>
  10. </article>
  11. </template>
  12. <style scoped>
  13. .home-page {
  14. @apply flex flex-col items-center text-8xl mt-80;
  15. }
  16. </style>