uni-halo/pagesC/website/website.vue
2022-12-06 15:08:29 +08:00

26 lines
360 B
Vue

<template>
<view class="app-page"><web-view :src="webUrl"></web-view></view>
</template>
<script>
export default {
data() {
return {
title: '',
webUrl: ''
};
},
onLoad(e) {
const { title, url } = JSON.parse(e.query.data);
this.webUrl = url;
this.fnSetPageTitle(title);
}
};
</script>
<style scoped>
.app-page {
width: 100vw;
}
</style>