Newer
Older
XiaoGanWXMini / pages / webview / index.vue
@zhangdeliang zhangdeliang on 29 Jul 445 bytes 迁移
<template>
	<!-- 首页轮播图跳转详情 -->
	<view class="specticalPage">
		<web-view :src="pageUrl" allow="'*'"></web-view>
	</view>
</template>

<script setup>
import { ref } from 'vue';
import { onLoad } from '@dcloudio/uni-app';
const pageUrl = ref('');

// onLoad 接受页面传递的参数
onLoad((option) => {
	pageUrl.value = option.urls;
});
</script>

<style lang="scss">
.specticalPage {
	width: 100%;
	height: 100%;
}
</style>