uni-halo/pagesC/website/website.vue

28 lines
438 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>