Files
web/app/components/snackbar/Info.vue
2026-06-26 17:23:57 +07:00

12 lines
172 B
Vue

<template>
<p
v-html="props.content"
class="fs-14 has-text-white"
></p>
</template>
<script setup>
const props = defineProps({
content: String,
});
</script>