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.
 
 
 
 
 
 

21 lines
470 B

<template>
<confirm-form
title="Clear annotations"
message="Are you sure you want to delete all annotations?"
:button-true-text="$t('generic.yes')"
:button-false-text="$t('generic.cancel')"
@ok="$emit('click:ok')"
@cancel="$emit('click:cancel')"
/>
</template>
<script lang="ts">
import Vue from 'vue'
import ConfirmForm from '@/components/utils/ConfirmForm.vue'
export default Vue.extend({
components: {
ConfirmForm
}
})
</script>