You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
434 B

3 months ago
  1. <script setup lang="ts">
  2. // socket.init(() => {})
  3. </script>
  4. <template>
  5. <router-view v-slot="{ Component }" class="main-content">
  6. <transition>
  7. <component :is="Component" />
  8. </transition>
  9. </router-view>
  10. </template>
  11. <style scoped lang="scss">
  12. .main-content {
  13. width: 100%;
  14. height: 100%;
  15. //background: url("assets/images/background.jpg") no-repeat center;
  16. background-size: cover;
  17. overflow: hidden;
  18. }
  19. </style>