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.
36 lines
577 B
36 lines
577 B
<template>
|
|
<v-card>
|
|
<v-card-title
|
|
class="headline grey lighten-2"
|
|
primary-title
|
|
>
|
|
Annotation Guideline
|
|
</v-card-title>
|
|
|
|
<v-card-text>
|
|
<viewer
|
|
:value="guidelineText"
|
|
/>
|
|
</v-card-text>
|
|
</v-card>
|
|
</template>
|
|
|
|
<script>
|
|
import 'tui-editor/dist/tui-editor-contents.css'
|
|
import 'highlight.js/styles/github.css'
|
|
import { Viewer } from '@toast-ui/vue-editor'
|
|
|
|
export default {
|
|
components: {
|
|
Viewer
|
|
},
|
|
|
|
props: {
|
|
guidelineText: {
|
|
type: String,
|
|
default: '',
|
|
required: true
|
|
}
|
|
}
|
|
}
|
|
</script>
|