Vue——获取整屏高度
2022-03-04 本文已影响0人
上海_前端_求内推
一、css 高度设置成100vh height: 100vh;
二、动态获取
HTML
<div class="content" :style={height:vdaH}></div>
JS
<script>
export default {
name: 'login',
data() {
return {
vdaH:0,
}
},
methods: {
},
created() {
let h = document.documentElement.clientHeight || document.body.clientHeight;
this.vdaH = h - 130 + 'px';
},
};
</script>
3,css计算属性
.page_content {
height: calc(100vh - 200px);
}