Files
2026-01-30 09:01:38 +08:00

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>