aboutsummaryrefslogtreecommitdiff
path: root/src/components/confirm_modal/confirm_modal.vue
blob: 250a6984bbb5d042ec0fc6199d441ae62b169fbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<template>
  <dialog-modal
    v-if="showing"
    :onCancel="onCancel"
  >
    <template v-slot:header>
      <span v-text="title"></span>
    </template>

    <slot></slot>

    <template v-slot:footer>
      <button
        class="btn button-default"
        v-text="confirmText"
        @click.prevent="onAccept"
      ></button>

      <button
        class="btn button-default"
        v-text="cancelText"
        @click.prevent="onCancel"
      ></button>
    </template>
  </dialog-modal>
</template>

<script src="./confirm_modal.js"></script>