vue.js 做锚点
Posted 安心牧羊人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue.js 做锚点相关的知识,希望对你有一定的参考价值。
<a href="javascript:void(0)" @click="goAnchor(‘#anchor‘)"> 灰啊灰啊我的骄傲放纵</a>
methods: {
goAnchor(selector) {
var anchor = this.$el.querySelector(selector)
document.body.scrollTop = anchor.offsetTop; // chrome
document.documentElement.scrollTop = anchor.offsetTop; // firefox
}
}
以上是关于vue.js 做锚点的主要内容,如果未能解决你的问题,请参考以下文章