消息
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<template>
|
||||
<TUICustomerServicePlugin :message="props.message" />
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { IMessageModel } from '@tencentcloud/chat-uikit-engine';
|
||||
import TUICustomerServicePlugin from '../../../tui-customer-service-plugin/index.vue';
|
||||
interface IProps {
|
||||
message: IMessageModel;
|
||||
}
|
||||
const props = withDefaults(defineProps<IProps>(), {
|
||||
message: () => ({} as IMessageModel),
|
||||
});
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
/* stylelint-disable-next-line no-empty-source */
|
||||
</style>
|
||||
Reference in New Issue
Block a user