@tencentcloud/chat-uikit-uniapp
Version:
TUIKit 是基于 IM SDK 实现的一套 UI 组件,其包含会话、聊天、群组、个人资料等功能,基于这些精心设计的 UI 组件,您可以快速构建优雅的、可靠的、可扩展的 Chat 应用。
28 lines (25 loc) • 507 B
text/typescript
import { genTestUserSig } from './debug';
import Server from './server';
import TUIComponents, {
TUIChat,
TUIConversation,
TUIContact,
TUISearch,
TUIGroup,
} from './components';
import TUIKit from './index.vue';
import { hideTUIChatFeatures } from './components/TUIChat/config';
const TUIChatKit = new Server();
TUIChatKit.init();
export {
TUIKit,
TUIChatKit,
TUIComponents,
TUIChat,
TUIConversation,
TUIContact,
TUISearch,
TUIGroup,
hideTUIChatFeatures,
genTestUserSig,
};