19 lines
287 B
Vue
19 lines
287 B
Vue
<template>
|
|
<web-view :src="src + id"></web-view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
id: '' ,// WebView URL
|
|
src: this.$config.staticUrl + '/public/vr/vr.html?id='
|
|
}
|
|
},
|
|
computed: {
|
|
},
|
|
onLoad(options) {
|
|
this.id = options.id
|
|
}
|
|
}
|
|
</script> |