vue 描点定位scrollIntoView无法移动到指定位置

使用window.scrollTo即可
window.scrollTo({
top: this.$el.querySelector(’#xxx’ + e).offsetTop - 100,
behavior: “smooth”
})

你可能感兴趣的:(vue,vue.js,javascript,前端)