index.vue 354 B

123456789101112131415
  1. <template>
  2. <div class="w-453px flex flex-col gap-15px lr-box-bg">
  3. <Box title="报警中心">
  4. <RightTopBox />
  5. </Box>
  6. <Box title="报警类型TOP5" wHeader="124px">
  7. <RightBottomBox />
  8. </Box>
  9. </div>
  10. </template>
  11. <script setup>
  12. import RightTopBox from './topBox.vue'
  13. import RightBottomBox from './bottomBox.vue'
  14. </script>