vue video src改变 页面不刷新
2019-04-12 本文已影响0人
eggplantmylove
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>