video.vue
529 字节
<template>
<view class="container">
<web-view :webview-styles="webviewStyles" :src="src"></web-view>
</view>
</template>
<script>
import app from "../../App.vue";
export default {
data() {
return {
src:''
}
},
onLoad(options) {
webviewStyles:{
progress: {
color: '#fff'
}
}
this.src=options.src
},
methods: {
}
}
</script>
<style>
</style>