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