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.
37 lines
611 B
37 lines
611 B
<template>
|
|
<v-btn-toggle
|
|
v-model="option"
|
|
mandatory
|
|
>
|
|
<v-btn icon>
|
|
<v-icon>{{ mdiFormatListBulleted }}</v-icon>
|
|
</v-btn>
|
|
<v-btn icon>
|
|
<v-icon>{{ mdiText }}</v-icon>
|
|
</v-btn>
|
|
</v-btn-toggle>
|
|
</template>
|
|
|
|
<script>
|
|
import { mdiFormatListBulleted, mdiText } from '@mdi/js'
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
option: 0,
|
|
mdiFormatListBulleted,
|
|
mdiText
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
option(val) {
|
|
if (val === 0) {
|
|
this.$emit('change', 'label-group')
|
|
} else {
|
|
this.$emit('change', 'label-select')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|