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.
58 lines
1.2 KiB
58 lines
1.2 KiB
<template>
|
|
<div style="display:inline;">
|
|
<v-tooltip bottom>
|
|
<template v-slot:activator="{ on }">
|
|
<v-btn
|
|
v-on="on"
|
|
@click="dialog=true"
|
|
class="text-capitalize ps-1 pe-1"
|
|
min-width="36"
|
|
outlined
|
|
>
|
|
<v-icon>
|
|
mdi-book-open-outline
|
|
</v-icon>
|
|
</v-btn>
|
|
</template>
|
|
<span>Show guideline</span>
|
|
</v-tooltip>
|
|
<base-dialog :dialog="dialog">
|
|
<guideline-card
|
|
v-if="currentProject"
|
|
:guideline-text="currentProject.guideline"
|
|
@close="dialog=false"
|
|
/>
|
|
</base-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapActions, mapGetters } from 'vuex'
|
|
import BaseDialog from '@/components/molecules/BaseDialog'
|
|
import GuidelineCard from '@/components/organisms/annotation/GuidelineCard'
|
|
|
|
export default {
|
|
components: {
|
|
BaseDialog,
|
|
GuidelineCard
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
dialog: false
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
...mapGetters('projects', ['currentProject'])
|
|
},
|
|
|
|
created() {
|
|
this.setCurrentProject(this.$route.params.id)
|
|
},
|
|
|
|
methods: {
|
|
...mapActions('projects', ['setCurrentProject'])
|
|
}
|
|
}
|
|
</script>
|