mirror of https://github.com/doccano/doccano.git
pythondatasetnatural-language-processingdata-labelingmachine-learningannotation-tooldatasetsactive-learningtext-annotation
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.
19 lines
375 B
19 lines
375 B
<template>
|
|
<confirm-form
|
|
title="Reset assignment"
|
|
message="Are you sure you want to reset all the assignments?"
|
|
@ok="$emit('reset')"
|
|
@cancel="$emit('cancel')"
|
|
/>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue'
|
|
import ConfirmForm from '@/components/utils/ConfirmForm.vue'
|
|
|
|
export default Vue.extend({
|
|
components: {
|
|
ConfirmForm
|
|
}
|
|
})
|
|
</script>
|