Files
ysdH5/pages/webView/webView.vue
2023-06-21 17:19:58 +08:00

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>