jiankong.vue
395 字节
<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 {
webviewStyles: {
progress: {
color: '#fff'
}
}
}
},
onLoad(options) {
this.src = options.src
},
methods: {
}
}
</script>
<style>
</style>