<div class="main-content">
<left :style="'height:'+cheight" />
<cen :style="'height:'+cheight" />
<right :style="'height:'+cheight" />
</div>
<div class="main-content" :style="'height:'+cheight">
<left style="height:100%" />
<cen style="height:100%" />
<right style="height:100%" />
</div>
html,body{
width: 100%;
height: 100%;
}
.wrap {
width: 100%;
height: 100%;
}
.main-content{
padding: 10px 10px 0;
height: calc(100% - 20px);
width: 100%;
display: flex;
}
你这是vue写法吗?试试:style=“{height: cheight + ‘px’}”
注意英文引号
是vue项目,这样不行,改完全js写了