FlexBox.vue 350 B

12345678910111213141516171819
  1. <template>
  2. <Box class="ovo-flex-box">
  3. <slot></slot>
  4. </Box>
  5. </template>
  6. <script>
  7. import Box from './Box.vue'
  8. export default {components: { Box }}
  9. </script>
  10. <style>
  11. .ovo-flex-box {
  12. position: relative;
  13. display: flex;
  14. flex-flow: row nowrap;
  15. justify-content: flex-start;
  16. align-items: flex-start;
  17. align-content: flex-start;
  18. }
  19. </style>