You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
304 B

5 years ago
  1. <template>
  2. <v-dialog
  3. :value="dialog"
  4. :width="width"
  5. >
  6. <slot />
  7. </v-dialog>
  8. </template>
  9. <script>
  10. export default {
  11. props: {
  12. dialog: {
  13. type: Boolean,
  14. default: false,
  15. required: true
  16. },
  17. width: {
  18. type: String,
  19. default: '800'
  20. }
  21. }
  22. }
  23. </script>