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
306 B
20 lines
306 B
<template>
|
|
<web-view src="" :src="url"></web-view>
|
|
</template>
|
|
|
|
<script>
|
|
import { API,ORIGIN } from '@/js/api';
|
|
export default {
|
|
data() {
|
|
return {
|
|
url: ''
|
|
}
|
|
},
|
|
onLoad(opt){
|
|
|
|
console.log('web_view',opt,ORIGIN)
|
|
this.url = opt.url
|
|
|
|
}
|
|
}
|
|
</script>
|