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

  1. <template>
  2. <confirm-form
  3. title="Reset assignment"
  4. message="Are you sure you want to reset all the assignments?"
  5. @ok="$emit('reset')"
  6. @cancel="$emit('cancel')"
  7. />
  8. </template>
  9. <script lang="ts">
  10. import Vue from 'vue'
  11. import ConfirmForm from '@/components/utils/ConfirmForm.vue'
  12. export default Vue.extend({
  13. components: {
  14. ConfirmForm
  15. }
  16. })
  17. </script>