This commit is contained in:
pengxiaolong
2025-05-19 18:34:04 +08:00
parent e05d72fccf
commit ff546bd9a9
31 changed files with 174 additions and 195 deletions

View File

@@ -102,11 +102,18 @@ import { CHAT_MSG_CUSTOM_TYPE } from '../../../../constant';
import { ICustomMessagePayload } from '../../../../interface';
import Icon from '../../../common/Icon.vue';
import star from '../../../../assets/icon/star-light.png';
import TUIChatEngine, {
TUIStore,
StoreName,
} from "@tencentcloud/chat-uikit-engine";
interface Props {
messageItem: IMessageModel;
content: any;
}
//```````````````````````````````````````````````````
const currentConversation = ref('123');
//```````````````````````````````````````````````````
const props = withDefaults(defineProps<Props>(), {
messageItem: undefined,
content: undefined,