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.
34 lines
600 B
34 lines
600 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>
|