import Base from './base'
|
class PlayVideo extends Base {
|
constructor (attr) {
|
super(attr)
|
this.videoUrl = attr.videoUrl || null
|
this.fileUrl = attr.fileUrl || null
|
this.playBtn = attr.playBtn || false
|
this.loopPlay = attr.loopPlay || false
|
this.autoPlay = attr.autoPlay || false
|
this.mutePlay = attr.mutePlay || false
|
this.autoStopPlay = attr.autoStopPlay || false
|
}
|
}
|
export default PlayVideo
|