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