77eceedbf7
This reverts commit a3811f944819430c278b6da6b08dc322a9b9ff65.
14 lines
319 B
Vue
14 lines
319 B
Vue
<template>
|
|
<div>
|
|
<slot></slot>
|
|
<button class="btn btn-default" @click="confirm" :disabled="disabled">
|
|
{{$t('general.confirm')}}
|
|
</button>
|
|
<button class="btn btn-default" @click="cancel" :disabled="disabled">
|
|
{{$t('general.cancel')}}
|
|
</button>
|
|
</div>
|
|
</template>
|
|
|
|
<script src="./confirm.js">
|
|
</script>
|