Files
integral-shop/single_uniapp22miao/pages/sub-pages/webview/index.vue

27 lines
342 B
Vue
Raw Normal View History

<template>
<view class="webview-page">
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: ''
}
},
onLoad(options) {
this.url = decodeURIComponent(options.url || '');
}
}
</script>
<style lang="scss" scoped>
.webview-page {
height: 100vh;
}
</style>