赞
踩
场景:动态改变一个模块的高度
<view
class="box"
:style="`height: ${boxHeight}px`">
我是一个动态高度的box,我的高度是{{boxHeight}}px
</view>
<view
class="box"
:style="{'--boxHeight': `${boxHeight}px`}">
我是一个动态高度的box
</view>
// .css文件
.box {
height: var(--boxHeight); // 这里必须与行内的key对应,var不可少
border: 1px solid red;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。