| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <v-container class="container">
- <v-row justify="center" align="center">
- <v-col cols="12" sm="12" md="12">
- <slot />
- </v-col>
- </v-row>
- </v-container>
- </template>
- <script setup>
- import { ref } from "vue";
- const props = defineProps({
- overflow: {
- type: Boolean,
- default: true,
- },
- });
- const overflow = ref(props.overflow);
- </script>
- <style scoped>
- .container {
- position: relative;
- max-width: 100%;
- min-width: 300px;
- }
- </style>
|