Home.vue 387 B

12345678910111213141516171819202122232425
  1. <script setup lang="ts"></script>
  2. <template>
  3. <div class="home">
  4. <!-- <img class="img" src="@/assets/images/1.jpg" /> -->
  5. <h1>welcome</h1>
  6. </div>
  7. </template>
  8. <style scoped lang="scss">
  9. .home {
  10. width: 100%;
  11. height: 100%;
  12. display: flex;
  13. justify-content: center;
  14. align-items: center;
  15. h1 {
  16. font-size: 4rem;
  17. }
  18. }
  19. .img {
  20. width: 100%;
  21. height: 100%;
  22. }
  23. </style>