case-data/pages/case/case.vue
zoujiandong fc0d7ce817 5.16
2025-05-16 17:16:23 +08:00

28 lines
524 B
Vue

<template>
<view class="content">
<view class="page">
<web-view src="https:www.baidu.com/" ></web-view>
</view>
<tabBar :value="1"></tabBar>
</view>
</template>
<script setup>
import { reactive, ref } from 'vue';
import { onShow } from "@dcloudio/uni-app";
import tabBar from '@/components/tabBar/tabBar.vue';
const webviewStyles=reactive({
width:"100%",
height:'calc(100vh - 0rpx)'
})
</script>
<style scoped>
.page{
width:100%;
height:calc(100vh - 100rpx);
overflow-y: scroll;
}
</style>