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.
27 lines
367 B
27 lines
367 B
<template>
|
|
<view>
|
|
<web-view :src="externalLink" />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
externalLink:''
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
// 在页面加载时获取外部链接地址
|
|
console.log('url---',options)
|
|
this.externalLink = options.url || '';
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|
|
|