wujingjing
2025-04-09 dd58c1d3a27ba48a5df050aab7c586bb9b988914
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
    <div>
        <component :is="contentCbTypeMapCom[data.type]" :item="data"  />
    </div>
</template>
 
<script setup lang="ts">
import { onMounted } from 'vue';
import { contentCbTypeMapCom } from '.';
import { chatComProps } from '../common';
 
const props = defineProps(chatComProps);
 
</script>
<style scoped lang="scss"></style>