admin 管理员组

文章数量: 887007

vue实现点击字母切换对应的城市

安装:cnpm install better-scroll@1.8.1 --save引入:import Bscroll from 'better-scroll'使用:   一定要用ref定义到最外层的大div  内层的div里面是要滚动的数据<div ref="aaa"><div></div></div>mounted() {this.scroll = new BScroll(this.$refs.aaa);}
监听点击的时候传递过来的字母  然后跳转对应的位置watch: {leter() {if (this.leter) {const element = this.$refs[this.leter][0];this.scroll.scrollToElement(element);}},},

本文标签: vue实现点击字母切换对应的城市