Files
system/components/snackbar/Info.vue
Xuan Loi ae1ea57130 changes
2026-01-09 17:25:23 +07:00

11 lines
236 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>