room.wxml 427 B

1234567891011121314
  1. <!--miniprogram/pages/room/room.wxml-->
  2. <!-- 在模版上放置标签 -->
  3. <view class="page-room {{direction}}" hidden="{{ !rtcMode }}">
  4. <view class="plv-rtc-bg-mask"></view>
  5. <trtc-room
  6. id="trtc-component"
  7. config="{{rtcConfig}}"
  8. direction="{{rtcDirection}}"
  9. teacherNameplateInfo="{{teacherNameplateInfo}}"
  10. viewerNameplateInfo="{{viewerNameplateInfo}}"
  11. >
  12. <slot></slot>
  13. </trtc-room>
  14. </view>