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.

37 lines
423 B

<template>
<web-view :src="src"></web-view>
</template>
<script>
import {
shareInfo
} from "@/common/util.js"
export default{
data(){
return{
src:''
}
},
onShareAppMessage() {
return shareInfo
},
onShareTimeline(){
return shareInfo
},
onShow() {
},
onLoad(options) {
if(options.link){
this.src = options.link
}
},
methods:{
}
}
</script>
<style>
</style>