Files
web/app/components/snackbar/Info.vue
2026-05-05 11:06:49 +07:00

12 lines
229 B
Vue

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