| 1234567891011121314151617181920212223242526 |
- <template>
- <div class="box">
- <Ring />
- <Pie />
- </div>
- </template>
- <script setup lang='ts'>
- import Ring from './Ring.vue'
- import Pie from './Pies.vue'
- </script>
- <style lang="scss" scoped>
- .box{
- width: 100vw;
- height: 100vh;
- display: flex;
- flex-wrap: wrap;
- background: black;
- &>div {
- width: 30%;
- height: 300px;
- }
- }
- </style>
|