Vue中div高度自适应

<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>
 
原文地址:https://www.cnblogs.com/uniapp1/p/13456728.html