aboutsummaryrefslogtreecommitdiff
path: root/src/components/settings_modal/tabs/security_tab/confirm.vue
blob: 69b3811b332c6e233e76bbf2525d87f7c2f6fe86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<template>
  <div>
    <slot />
    <button
      class="btn btn-default"
      :disabled="disabled"
      @click="confirm"
    >
      {{ $t('general.confirm') }}
    </button>
    <button
      class="btn btn-default"
      :disabled="disabled"
      @click="cancel"
    >
      {{ $t('general.cancel') }}
    </button>
  </div>
</template>

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