vue中如何动态设置元素的高度
1. 添加样式绑定<div class="container" :style="{height: scrollerHeight}"></div>2. 添加属性计算computed: {// 滚动区高度scrollerHeight: function() {return (window.innerHeight - 50) + 'px'; //自定义高度需求}}...
·
1. 添加样式绑定
<div class="container" :style="{height: scrollerHeight}">
</div>
2. 添加属性计算
computed: {
// 滚动区高度
scrollerHeight: function() {
return (window.innerHeight - 50) + 'px'; //自定义高度需求
}
}
更多推荐
已为社区贡献6条内容
所有评论(0)