2019-06-13 06:16:55 +10:00
|
|
|
<template>
|
2019-07-05 17:17:44 +10:00
|
|
|
<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>
|
2019-06-13 06:16:55 +10:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./confirm.js">
|
|
|
|
</script>
|