This commit is contained in:
pengxiaolong
2025-05-13 19:39:53 +08:00
parent 37da6765b8
commit c006a8e63d
1232 changed files with 96963 additions and 883 deletions

View File

@@ -0,0 +1,5 @@
import {
isCustomerServicePluginMessage,
isMessageInvisible as isCustomServiceMessageInvisible,
} from '../../../tui-customer-service-plugin';
export { isCustomerServicePluginMessage, isCustomServiceMessageInvisible };

View File

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