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.
66 lines
1.2 KiB
66 lines
1.2 KiB
<template>
|
|
<editor
|
|
v-if="current"
|
|
v-model="editorText"
|
|
preview-style="vertical"
|
|
height="inherit"
|
|
:options="editorOptions"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import 'tui-editor/dist/tui-editor.css'
|
|
import 'tui-editor/dist/tui-editor-contents.css'
|
|
import 'codemirror/lib/codemirror.css'
|
|
import { Editor } from '@toast-ui/vue-editor'
|
|
import { mapState, mapActions } from 'vuex'
|
|
import '@/assets/style/editor.css'
|
|
|
|
export default {
|
|
layout: 'project',
|
|
components: {
|
|
Editor
|
|
},
|
|
data() {
|
|
return {
|
|
editorOptions: {
|
|
language: this.$t('toastui.localeCode')
|
|
}
|
|
}
|
|
},
|
|
validate({ params }) {
|
|
return /^\d+$/.test(params.id)
|
|
},
|
|
|
|
computed: {
|
|
...mapState('projects', ['current']),
|
|
|
|
editorText: {
|
|
get() {
|
|
return this.current.guideline
|
|
},
|
|
set(value) {
|
|
const data = {
|
|
projectId: this.$route.params.id,
|
|
guideline: value
|
|
}
|
|
this.updateCurrentProject(data)
|
|
}
|
|
}
|
|
},
|
|
|
|
async created() {
|
|
await this.setCurrentProject(this.$route.params.id)
|
|
},
|
|
|
|
methods: {
|
|
...mapActions('projects', ['setCurrentProject', 'updateCurrentProject'])
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.te-md-container .CodeMirror, .tui-editor-contents {
|
|
font-size: 20px;
|
|
}
|
|
</style>
|