12345678910111213141516171819202122232425 |
- <script setup lang="ts"></script>
- <template>
- <div class="home">
- <!-- <img class="img" src="@/assets/images/1.jpg" /> -->
- <h1>welcome</h1>
- </div>
- </template>
- <style scoped lang="scss">
- .home {
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- h1 {
- font-size: 4rem;
- }
- }
- .img {
- width: 100%;
- height: 100%;
- }
- </style>
|