2024-04-29 17:11:33 +08:00
|
|
|
<template>
|
2024-05-03 18:05:14 +08:00
|
|
|
<div class="home">首页</div>
|
2024-04-29 17:11:33 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts"></script>
|
|
|
|
|
|
2024-05-03 18:05:14 +08:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.home {
|
|
|
|
|
height: 2000px;
|
|
|
|
|
border: 1px solid red;
|
|
|
|
|
}
|
|
|
|
|
</style>
|