24 lines
387 B
Vue
24 lines
387 B
Vue
<template>
|
|
<view>
|
|
<web-view :src="url"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
url: '' // 外部链接地址
|
|
}
|
|
},
|
|
|
|
onLoad(options) {
|
|
// 接受链接地址
|
|
this.url = decodeURIComponent(options.url)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|