This commit is contained in:
Viet An
2026-05-14 17:00:03 +07:00
parent 1f44f9e6bf
commit 400bbf242e
5 changed files with 76 additions and 71 deletions

View File

@@ -2,10 +2,13 @@
<p v-html="props.content"></p>
</template>
<script setup>
var props = defineProps({
const props = defineProps({
content: String,
});
const { $store } = useNuxtApp();
function cancel() {
this.$store.commit("updateStore", { name: "showmodal", data: undefined });
$store.commit("updateStore", { name: "showmodal", data: undefined });
}
</script>