UNPKG

@tencentcloud/roomkit-web-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,

24 lines (23 loc) 853 B
import { defineComponent, createElementBlock, openBlock, createVNode, createElementVNode, unref, toDisplayString } from "vue"; import { IconLoadingSchedule } from "@tencentcloud/uikit-base-component-vue3"; import { useI18n } from "../../locales/index.mjs"; const _hoisted_1 = { class: "loading-overlay" }; const _hoisted_2 = { class: "loading-text" }; const _sfc_main = /* @__PURE__ */ defineComponent({ __name: "LoadingOverlay", setup(__props) { const { t } = useI18n(); return (_ctx, _cache) => { return openBlock(), createElementBlock("div", _hoisted_1, [ createVNode(unref(IconLoadingSchedule), { class: "loading", size: "36" }), createElementVNode("span", _hoisted_2, toDisplayString(unref(t)("Entering the room now...")), 1) ]); }; } }); export { _sfc_main as default };