Container.vue 341 B

123456789101112131415161718
  1. <template>
  2. <v-container class="container">
  3. <v-row justify="center" align="center">
  4. <v-col cols="12">
  5. <slot />
  6. </v-col>
  7. </v-row>
  8. </v-container>
  9. </template>
  10. <style scoped lang="scss">
  11. .container {
  12. position: relative;
  13. max-width: 100%;
  14. padding-left: 0 !important;
  15. padding-right: 0 !important;
  16. }
  17. </style>