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>
|
|