index.vue 617 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div class="m-container-layout">
  3. <div class="m-container-layout-inner">
  4. <slot></slot>
  5. </div>
  6. </div>
  7. </template>
  8. <script lang="ts" setup></script>
  9. <style lang="scss" scoped>
  10. .m-container-layout {
  11. width: 100%;
  12. height: 100%;
  13. display: flex;
  14. padding: 10px 12px;
  15. box-sizing: border-box;
  16. .m-container-layout-inner {
  17. flex: 1;
  18. display: flex;
  19. flex-direction: column;
  20. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  21. background: white;
  22. padding: 20px;
  23. width: 100%;
  24. height: 100%;
  25. box-sizing: border-box;
  26. }
  27. }
  28. </style>