vue 置顶操作

  • Post author:
  • Post category:vue


// 滚动置顶

scrollToTop() {

if (this.$refs.newsList) {

this.$nextTick(function() {

this.$refs.newsList.scrollTo({ top: 0, behavior: ‘smooth’ })

})

}

}



版权声明:本文为weixin_41127362原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。