changes
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user