This commit is contained in:
2025-12-25 08:26:09 +08:00
parent ab5c01bf5c
commit 964e4f9c33
72 changed files with 2474 additions and 1065 deletions

26
pages/vr/vr.vue Normal file
View File

@@ -0,0 +1,26 @@
<template>
<view class="vr-page">
<web-view :src="src"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
src: ""
};
},
onLoad(options) {
this.src = decodeURIComponent(options.url);
}
};
</script>
<style>
.vr-page,
.vr-page web-view {
width: 100%;
height: 100%;
}
</style>