首页 > 技术文章 > Vue中div高度自适应

uniapp1 2020-08-08 10:44 原文

<template>

  <div :style="conheight">
</template>
<script>
  export default{
    data(){
      conheight:{
                height:''
            }
    },
    methods:{
        getHeight(){
          this.conheight.height=window.innerHeight-170+'px';
       },
    created(){
        window.addEventListener('resize'this.getHeight);
        this.getHeight()
     }
  }
 
</script>
 

推荐阅读