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

  1. <template>
  2. <confirm-form
  3. title="Clear annotations"
  4. message="Are you sure you want to delete all annotations?"
  5. :button-true-text="$t('generic.yes')"
  6. :button-false-text="$t('generic.cancel')"
  7. @ok="$emit('click:ok')"
  8. @cancel="$emit('click:cancel')"
  9. />
  10. </template>
  11. <script lang="ts">
  12. import Vue from 'vue'
  13. import ConfirmForm from '@/components/utils/ConfirmForm.vue'
  14. export default Vue.extend({
  15. components: {
  16. ConfirmForm
  17. }
  18. })
  19. </script>