Files
RentWeAppFront/pages-biz/vr/vr.vue

19 lines
287 B
Vue
Raw Normal View History

2026-01-15 17:18:24 +08:00
<template>
2026-01-30 09:01:38 +08:00
<web-view :src="src + id"></web-view>
2026-01-15 17:18:24 +08:00
</template>
<script>
2026-01-30 09:01:38 +08:00
export default {
data() {
return {
id: '' ,// WebView URL
src: this.$config.staticUrl + '/public/vr/vr.html?id='
}
},
computed: {
},
onLoad(options) {
this.id = options.id
}
}
</script>