vue 动态设置滚动条高度
vue 动态设置滚动条高度获取动态内容高度,设置监听<div class="description_cont" ref="cont_height"><pre v-html="result.description"></pre></div>div class="description_cont" :style="{maxHeight: scr
·
vue 动态设置滚动条高度
获取动态内容高度,设置监听
<div class="description_cont" ref="cont_height">
<pre v-html="result.description"></pre>
</div>
div class="description_cont" :style="{maxHeight: scrollerHeight}">
<pre v-html="rep_tab_cont"></pre>
</div>
computed:{
// 滚动区高度
scrollerHeight: function() {
return (this.HEIGHT) + 'px'; //自定义高度需求
}
}
切换事件
document.querySelector('#test').scrollTo(0, 0)
//请求中 cont_height
this.$nextTick(function(){
var height = this.$refs.cont_height.offsetHeight;
this.HEIGHT = height
});
更多推荐
已为社区贡献1条内容
所有评论(0)