You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
383 B
28 lines
383 B
<template>
|
|
<view class="">
|
|
<web-view :src="html"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
html: ''
|
|
}
|
|
},
|
|
onLoad: function (option) {
|
|
this.html=decodeURIComponent(option.src)
|
|
if(option.title){
|
|
uni.setNavigationBarTitle({
|
|
title: option.title
|
|
});//设置标题
|
|
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|
|
|