19 lines
284 B
Vue
19 lines
284 B
Vue
|
<template>
|
||
|
<web-view :src="url"></web-view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
url: ''
|
||
|
}
|
||
|
},
|
||
|
onLoad(options) {
|
||
|
if (options && options.url) {
|
||
|
this.url = decodeURIComponent(options.url);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|