VUE 通过id 滚动到指定位置

scrollTopAnimate(id){
    this.$nextTick(()=>{
        window.scrollTo({top:document.getElementById(id).offsetTop - 138, behavior: 'smooth'})
    })
}

你可能感兴趣的:(VUE 通过id 滚动到指定位置)