mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
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.
35 lines
508 B
35 lines
508 B
<template>
|
|
<v-dialog
|
|
v-model="dialog"
|
|
width="800px"
|
|
>
|
|
<template v-slot:activator="{ on }">
|
|
<v-btn
|
|
class="mb-2 text-capitalize"
|
|
color="primary"
|
|
@click="dialog=true"
|
|
>
|
|
{{ text }}
|
|
</v-btn>
|
|
</template>
|
|
<template #content />
|
|
</v-dialog>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
text: {
|
|
type: String,
|
|
default: '',
|
|
required: true
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
dialog: false
|
|
}
|
|
}
|
|
}
|
|
</script>
|