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,

18 lines (15 loc) 392 B
import { useRoomStore } from '../../../stores/room'; import { useI18n } from '../../../locales'; import { storeToRefs } from 'pinia'; export default function useRoomFooter() { const roomStore = useRoomStore(); const { t } = useI18n(); const { isMaster, isAdmin, isAudience } = storeToRefs(roomStore); return { t, roomStore, isMaster, isAdmin, isAudience, }; }