index.nvue的示例代码
<template>
<view class="yd-index">
<input class="yd-index-input" placeholder="nvue的顶部输入框"/>
<web-view class="yd-index-content" :webview-styles="webStyle" :src="webSrc"></web-view>
<input class="yd-index-input" placeholder="nvue的底部输入框"/>
</view>
</template>
<script>
export default {
data() {
return {
webSrc: '/hybrid/html/test/index.html',
webStyle: {
progress: false
},
}
},
onLoad() {
},
methods: {
}
}
</script>
<style>
.yd-index {
flex: 1;
display: flex;
flex-direction: column;
}
.yd-index-content {
flex: 1;
}
.yd-index-input {
border: 1rpx solid #000000;
height: 100rpx;
border-radius: 10rpx;
}
</style>
/hybrid/html/test/index.html的示例代码。
<!DOCTYPE html>
<html lang=zh-CN>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- viewport-fit=cover 不设置的话,IOS会间隔状态栏,Android正常 -->
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover" />
<title>error</title>
<style>
html,
body {
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.yd-test {
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
border: 1px solid red;
}
.yd-test-input {
height: 30px;
}
</style>
<script>
</script>
</head>
<body>
<div class="yd-test">
<div>Webview的测试页面</div>
<input class="yd-test-input" placeholder="H5的顶部输入框"/>
<div style="flex: 1;"></div>
<input class="yd-test-input" placeholder="H5的底部输入框"/>
</div>
</body>
</html>