UNPKG

@tencentcloud/roomkit-electron-vue3

Version:

<h1 align="center"> TUIRoomKit</h1> Conference (TUIRoomKit) is a product suitable for multi-person audio and video conversation scenarios such as business meetings, webinars, and online education. By integrating this product, you can add room management,

25 lines (24 loc) 855 B
import { defineComponent, createElementBlock, openBlock, normalizeClass, unref, toDisplayString } from "vue"; import { TUITranslateService } from "@tencentcloud/chat-uikit-engine"; import { isUniFrameWork } from "../../../utils/env.mjs"; const _sfc_main = /* @__PURE__ */ defineComponent({ __name: "message-room-default", props: { message: { default: () => ({}) } }, setup(__props) { const props = __props; return (_ctx, _cache) => { return openBlock(), createElementBlock("div", { class: normalizeClass([ "room-default", unref(isUniFrameWork) && "room-default-uni", props.message.flow === "in" ? "room-default-in" : "room-default-out" ]) }, toDisplayString(unref(TUITranslateService).t("message.custom.自定义消息")), 3); }; } }); export { _sfc_main as default };