<template>
<view class="webView">
<web-view class="web-view" :src="webviewPath"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
webviewPath: 'http://www.baidu.com',
};
},
onLoad(option) {
},
mounted() {
}
};
</script>
<style scoped lang="scss">
.webView {
flex: 1;
// margin-top: var(--status-bar-height);
}
.web-view {
flex: 1;
}
</style>