| 123456789101112131415161718192021222324252627282930313233343536 |
- <!-- Fenêtre de dialogue -->
- <template>
- <v-dialog
- v-model="show"
- persistent
- max-width="800"
- >
- <v-card>
- <slot name="dialogText" />
- <v-divider />
- <v-card-actions>
- <v-spacer />
- <slot name="dialogBtn" />
- </v-card-actions>
- </v-card>
- </v-dialog>
- </template>
- <script lang="ts">
- import { defineComponent } from '@nuxtjs/composition-api'
- export default defineComponent({
- props: {
- show: {
- type: Boolean,
- required: true
- }
- }
- })
- </script>
- <style scoped>
- </style>
|