使用 vue 构建 video 组件

以浏览器的原生组件 video:
 src="example.mp4"
 width="320"
 height="240"
 onload="loadHandler"
 onerror="errorHandler">
 Your browser does not support the video tag.


使用 vue 对 video 组件做拓展,构造出一个支持播放列表的组件 myVideo:


1
2
3
4
5
6
7
8
9
10
 :playlist="playlist"
 width="320"
 height="240"
 @load="loadHandler"
 @error="errorHandler"
 @playnext="nextHandler"
 @playprev="prevHandler">
 
"endpage">

你可能感兴趣的:(vuejs)