vue页面内部跳转我所使用的方法是在methods中定义
goSomeWhere(){ document.querySelector("#需要跳转位置的id").scrollIntoView({behavior: "smooth"}); },
将behavior设置为smooth则跳转时为页面滚动跳转,在需要点击跳转的位置调用该方法即可。