| 123456789101112131415161718 |
- <template>
- <v-container class="container">
- <v-row justify="center" align="center">
- <v-col cols="12">
- <slot />
- </v-col>
- </v-row>
- </v-container>
- </template>
- <style scoped lang="scss">
- .container {
- position: relative;
- max-width: 100%;
- padding-left: 0 !important;
- padding-right: 0 !important;
- }
- </style>
|