app.example.vue 580 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div class="play-container">
  3. <el-icon color="#409EFC">
  4. <el-icon-check />
  5. </el-icon>
  6. <el-icon>
  7. <el-icon-menu />
  8. </el-icon>
  9. <el-button>test</el-button>
  10. <div v-loading="true" />
  11. </div>
  12. </template>
  13. <script setup lang="ts">
  14. // code here
  15. </script>
  16. <style lang="scss">
  17. html,
  18. body {
  19. width: 100vw;
  20. height: 100vh;
  21. margin: 0;
  22. #play {
  23. height: 100%;
  24. width: 100%;
  25. .play-container {
  26. height: 100%;
  27. width: 100%;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. }
  32. }
  33. }
  34. </style>