douyin/src/pages/BasePage.js
2024-04-02 15:40:18 +08:00

18 lines
398 B
JavaScript

export default {
data() {
return {
mainScrollTop: 0
}
},
activated() {
if (this.$refs.mainScroll && this.$refs.mainScroll.wrapper) {
this.$refs.mainScroll.wrapper.scrollTop = this.mainScrollTop
}
},
deactivated() {
if (this.$refs.mainScroll && this.$refs.mainScroll.wrapper) {
this.mainScrollTop = this.$refs.mainScroll.wrapper.scrollTop
}
}
}