mirror of https://github.com/doccano/doccano.git
2 changed files with 32 additions and 15 deletions
Split View
Diff Options
@ -0,0 +1,24 @@ |
|||
<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> |
Write
Preview
Loading…
Cancel
Save