feat: setup email bubble

This commit is contained in:
Shivam Mishra
2024-11-29 16:37:42 +05:30
parent 376c6ae90a
commit 03389ad773
3 changed files with 50 additions and 0 deletions
@@ -0,0 +1,16 @@
<script setup>
import BaseBubble from 'next/message/bubbles/Base.vue';
defineProps({
content: {
type: String,
required: true,
},
});
</script>
<template>
<BaseBubble class="w-full">
<div class="p-4 prose prose-sm max-w-none" v-html="content" />
</BaseBubble>
</template>