mirror of https://github.com/doccano/doccano.git
Browse Source
Merge pull request #900 from doccano/fix/#825
Merge pull request #900 from doccano/fix/#825
Replace BaseDialog with VDialog, fix #825pull/903/head
Hiroki Nakayama
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 35 additions and 48 deletions
Unified View
Diff Options
-
9frontend/components/containers/annotation/GuidelineButton.vue
-
16frontend/components/containers/documents/DocumentActionMenu.vue
-
9frontend/components/containers/documents/DocumentDeletionButton.vue
-
16frontend/components/containers/labels/LabelActionMenu.vue
-
9frontend/components/containers/labels/LabelDeletionButton.vue
-
24frontend/components/molecules/BaseDialog.vue
@ -1,24 +0,0 @@ |
|||||
<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