mirror of
https://git.youjo.love/youjo/youjo-fe.git
synced 2025-03-10 03:59:59 +01:00
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>
|