@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) • 921 B
JavaScript
;
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
const Vue = require("vue");
const TUIChatEngine = require("@tencentcloud/chat-uikit-engine");
const env = require("../../../utils/env.js");
const _sfc_main = /* @__PURE__ */ Vue.defineComponent({
__name: "message-room-default",
props: {
message: { default: () => ({}) }
},
setup(__props) {
const props = __props;
return (_ctx, _cache) => {
return Vue.openBlock(), Vue.createElementBlock("div", {
class: Vue.normalizeClass([
"room-default",
Vue.unref(env.isUniFrameWork) && "room-default-uni",
props.message.flow === "in" ? "room-default-in" : "room-default-out"
])
}, Vue.toDisplayString(Vue.unref(TUIChatEngine.TUITranslateService).t("message.custom.自定义消息")), 3);
};
}
});
exports.default = _sfc_main;