feat: separate activity bubble

This commit is contained in:
Shivam Mishra
2024-11-27 18:35:09 +05:30
parent 0ae085ffbb
commit ee71d6d50f
2 changed files with 19 additions and 2 deletions
@@ -0,0 +1,16 @@
<script setup>
import BaseBubble from './Base.vue';
defineProps({
content: {
type: String,
required: true,
},
});
</script>
<template>
<BaseBubble>
<span v-html="content" />
</BaseBubble>
</template>