作者:高山流水2602934240 | 来源:互联网 | 2023-08-11 23:18
由于vue.js2.0不支持import方式,所以用webpack对lv_vue.js打包,生成bundle.js.
由于vue.js2.0不支持import方式,所以用webpack对lv_vue.js打包,生成bundle.js.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| import myVideo from 'vue-video';
export default {
data () {
return {
video: {
sources: [{
src: 'http://covteam.u.qiniudn.com/oceans.mp4',
type: 'video/mp4'
}],
options: {
autoplay: true,
volume: 0.6,
poster: 'http://covteam.u.qiniudn.com/poster.png'
}
}
}
},
components: {
myVideo
}
} |
在index.html中调用bundle.js
myvideo的值为空,是什么原因呢?