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

<template>
<v-dialog
:value="dialog"
:width="width"
>
<slot />
</v-dialog>
</template>
<script>
export default {
props: {
dialog: {
type: Boolean,
default: false,
required: true
},
width: {
type: String,
default: '800'
}
}
}
</script>