26 lines
486 B
Vue
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>
|