Files
web/app/components/snackbar/Success.vue
2026-05-14 17:00:03 +07:00

26 lines
486 B
Vue

<template>
<div class="field is-grouped is-gap-1">
<Icon
name="material-symbols:check-circle-rounded"
:size="22"
class="has-text-success"
/>
<p
v-html="content"
class="control is-expanded"
></p>
</div>
</template>
<script setup>
const props = defineProps({
content: String,
title: String,
});
const { $store } = useNuxtApp();
function cancel() {
$store.commit("updateStore", { name: "showmodal", data: undefined });
}
</script>