index.vue 382 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div class="box">
  3. <Ring />
  4. <Pie />
  5. </div>
  6. </template>
  7. <script setup lang='ts'>
  8. import Ring from './Ring.vue'
  9. import Pie from './Pies.vue'
  10. </script>
  11. <style lang="scss" scoped>
  12. .box{
  13. width: 100vw;
  14. height: 100vh;
  15. display: flex;
  16. flex-wrap: wrap;
  17. background: black;
  18. &>div {
  19. width: 30%;
  20. height: 300px;
  21. }
  22. }
  23. </style>