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.
38 lines
628 B
38 lines
628 B
<template>
|
|
<base-text-area>
|
|
<template #title>
|
|
<multi-class-classification
|
|
:labels="items"
|
|
/>
|
|
</template>
|
|
<template #content>
|
|
<div class="title">
|
|
Text area
|
|
</div>
|
|
</template>
|
|
</base-text-area>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseTextArea from '@/components/molecules/BaseTextArea'
|
|
import MultiClassClassification from '@/components/organisms/MultiClassClassification'
|
|
|
|
export default {
|
|
components: {
|
|
BaseTextArea,
|
|
MultiClassClassification
|
|
},
|
|
|
|
computed: {
|
|
items() {
|
|
return ['foo', 'bar']
|
|
}
|
|
},
|
|
|
|
created() {
|
|
},
|
|
|
|
methods: {
|
|
}
|
|
}
|
|
</script>
|