移动端 H5 scrollTop 回到顶部
this.$nextTick(() => { this.$refs.navBox.scrollTop = 0; });
或
this.$nextTick(() => { let scrollElem = this.$refs.scrollDiv; scrollElem.scrollTo({ top: 0, behavior: 'smooth' }); });
this.$nextTick(() => { this.$refs.navBox.scrollTop = 0; });
或
this.$nextTick(() => { let scrollElem = this.$refs.scrollDiv; scrollElem.scrollTo({ top: 0, behavior: 'smooth' }); });