Skip to content
On this page

props

在載入影片上傳web-component的時候

可使用一些props來做額外的設定

例如以下的debug屬性

html
<micro-media-player
  id="micro-media-player"
  debug
></micro-media-player>

debug

Boolean

啟用Debug模式

上傳元件將會在console中印出各種資訊方便debug

disabled

Boolean

當此屬性設定為true的時候播放器將被設定為disabled狀態

範例

html
<micro-media-player
  id="micro-media-player"
  disabled="true"
></micro-media-player>