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.

20 lines
305 B

<template>
<web-view v-if="url" :src="url"></web-view>
</template>
<script>
export default {
data() {
return {
url: '' // 指定要打开的H5页面的URL
}
},
onLoad(option) {
this.url = option.url?option.url:''
console.log(this.url)
}
}
</script>
<style>
</style>