app_tree_planting/pages/news/newsweb.vue
2023-02-27 11:21:31 +08:00

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>