data数据更新,视图未更新
<video ref="video" controls controlslist="nodownload" preload="none" width="100%" height="100%" :poster="item.img">
<source :src="item.mp4_url" type="video/mp4">
</video>
正确写法src不要在source标签里
<video ref="video" controls controlslist="nodownload"
preload="none" width="100%" height="100%" :poster="item.img" :src="item.mp4_url">
</video>
网友评论