| 123456789101112131415161718 | <script setup lang="ts">import { ref } from "vue";</script><template>  <article class="home-page">    <h1 class="title">主页-HOME</h1>    <router-link to="/login">      <el-button size="large" type="primary">登录</el-button>    </router-link>  </article></template><style scoped>.home-page {  @apply flex flex-col items-center text-8xl mt-80;}</style>
 |