29 lines
335 B
Vue
29 lines
335 B
Vue
<template>
|
|
<view>
|
|
<web-view :src="pageUrl"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
pageUrl: ''
|
|
}
|
|
},
|
|
onLoad(res) {
|
|
this.pageUrl = res.url;
|
|
uni.setNavigationBarTitle({
|
|
title:res.title
|
|
})
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|