vue中的锚点
2019-06-12 本文已影响0人
粥的进击之旅
今天写搭建一个PC网站,用到返回顶点的功能,想到了锚点
用到了scrollIntoView()方法
<div class="to_top" @click="toTop()"></div>
...
methods:{
toTop(){
let header = document.querySelector(".header")
header.scrollIntoView(true)
}
}
这样点击就能跳转到header的顶部