index.vue 399 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div class="containner">
  3. <router-view class="content" />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "alarmCenter", //综合报警
  9. };
  10. </script>
  11. <style lang="less" scoped>
  12. .containner {
  13. width: 100%;
  14. height: 100%;
  15. display: flex;
  16. justify-content: space-between;
  17. padding: 0 20px;
  18. }
  19. .content {
  20. display: flex;
  21. flex-direction: column;
  22. height: 100%;
  23. }
  24. </style>