mirror of
http://36.133.248.69:3088/admin/RentWeAppFront.git
synced 2026-03-07 17:32:25 +08:00
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> |