Skip to content

非公式本サイトは非公式の日本語ドキュメントであり、Cloudflare 公式サイトではありません。最新情報はdevelopers.cloudflare.comをご確認ください。

rtk-breakout-room-participants

最終更新 Markdown で表示Agent セットアップ

参加者を一覧表示するコンポーネントです。権限に応じて、各参加者に特権アクションを実行できます。

プロパティ

プロパティ 必須 デフォルト 説明
iconPack IconPack defaultIconPack アイコンパック
meeting Meeting - Meeting オブジェクト
participantIds string[] - 参加者 ID
selectedParticipantIds string[] - 選択中の参加者
t RtkI18n useLanguage() 言語

使用例

基本的な使い方

<rtk-breakout-room-participants></rtk-breakout-room-participants>

プロパティを指定する場合

<rtk-breakout-room-participants
 participantIds="example"
 selectedParticipantIds="example">
</rtk-breakout-room-participants>
<script>
  const el = document.querySelector("rtk-breakout-room-participants");

  el.meeting= meeting
  el.participantIds= [];
  el.selectedParticipantIds= [];
</script>

役に立ちましたか?