Files
web/app/components/dialog/Info.vue
2026-05-07 16:15:33 +07:00

38 lines
668 B
Vue

<template>
<div>
<p v-html="content"></p>
<div class="mt-3 mb-5"></div>
<div class="field is-grouped">
<div class="control is-expanded">
<button
class="button is-light"
@click="cancel()"
>
Đóng
</button>
</div>
<div
v-if="duration"
class="control"
>
<CountDown
:duration="duration"
@close="cancel()"
/>
</div>
</div>
</div>
</template>
<script setup>
const props = defineProps({
content: String,
duration: Number,
});
const emit = defineEmits(["close"]);
function cancel() {
emit("close");
}
</script>