Prettified
This commit is contained in:
parent
b3f4e09a21
commit
89e1708288
3 changed files with 4 additions and 5 deletions
|
|
@ -12,7 +12,7 @@ jest.mock("@/mixins/base-mixin", () => ({
|
|||
});
|
||||
}
|
||||
},
|
||||
scrollToPageBottom() {}
|
||||
scrollToPageBottom() {},
|
||||
},
|
||||
}));
|
||||
|
||||
|
|
|
|||
|
|
@ -141,7 +141,6 @@ export default {
|
|||
await this.$nextTick();
|
||||
|
||||
this.scrollToPageBottom();
|
||||
|
||||
},
|
||||
resetShopList() {
|
||||
this.answers = [];
|
||||
|
|
|
|||
|
|
@ -101,12 +101,12 @@ export default {
|
|||
},
|
||||
scrollToPageTop() {
|
||||
const container = document.getElementsByClassName("page-container-grouped-styles")[0];
|
||||
container.scrollTo({ top: 0, left: 0, behavior: "smooth" });
|
||||
container.scrollTo({ top: 0, left: 0, behavior: "smooth" });
|
||||
},
|
||||
scrollToPageBottom() {
|
||||
const container = document.getElementsByClassName("page-container-grouped-styles")[0];
|
||||
container.scrollTo({ top: container.scrollHeight, left: 0, behavior: "smooth" });
|
||||
}
|
||||
container.scrollTo({ top: container.scrollHeight, left: 0, behavior: "smooth" });
|
||||
},
|
||||
},
|
||||
computed: {
|
||||
storeActions() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue