This commit is contained in:
Tusooa Zhu 2022-02-09 17:03:17 -05:00 committed by FloatingGhost
parent 58155abeb1
commit 8be3c46bcc
2 changed files with 8 additions and 8 deletions

View File

@ -2,26 +2,26 @@
<dialog-modal
v-if="showing"
class="confirm-modal"
:onCancel="onCancel"
:on-cancel="onCancel"
>
<template v-slot:header>
<span v-text="title"></span>
<span v-text="title" />
</template>
<slot></slot>
<slot />
<template v-slot:footer>
<button
class="btn button-default"
v-text="confirmText"
@click.prevent="onAccept"
></button>
v-text="confirmText"
/>
<button
class="btn button-default"
v-text="cancelText"
@click.prevent="onCancel"
></button>
v-text="cancelText"
/>
</template>
</dialog-modal>
</template>

View File

@ -8,7 +8,7 @@ export default {
data () {
return {
inProgress: false,
showingConfirmUnfollow: false,
showingConfirmUnfollow: false
}
},
computed: {