mirror of
http://36.133.248.69:3088/admin/RentWeAppFront.git
synced 2026-03-08 01:42:28 +08:00
27 lines
338 B
Vue
27 lines
338 B
Vue
<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>
|