mirror of https://github.com/doccano/doccano.git
pythonannotation-tooldatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learning
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.
44 lines
873 B
44 lines
873 B
<template>
|
|
<v-tooltip bottom>
|
|
<template #activator="{ on }">
|
|
<v-btn
|
|
v-shortkey.once="['enter']"
|
|
icon
|
|
v-on="on"
|
|
@shortkey="$emit('click:review')"
|
|
@click="$emit('click:review')"
|
|
>
|
|
<v-icon v-if="isReviewd">
|
|
{{ mdiCheck }}
|
|
</v-icon>
|
|
<v-icon v-else>
|
|
{{ mdiClose }}
|
|
</v-icon>
|
|
</v-btn>
|
|
</template>
|
|
<span v-if="isReviewd">{{ $t('annotation.checkedTooltip') }}</span>
|
|
<span v-else>{{ $t('annotation.notCheckedTooltip') }}</span>
|
|
</v-tooltip>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue'
|
|
import { mdiClose, mdiCheck } from '@mdi/js'
|
|
|
|
export default Vue.extend({
|
|
props: {
|
|
isReviewd: {
|
|
type: Boolean,
|
|
default: false,
|
|
required: true
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
mdiClose,
|
|
mdiCheck
|
|
}
|
|
}
|
|
})
|
|
</script>
|