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
            });  

 

Logo

前往低代码交流专区

更多推荐