This commit is contained in:
syuilo 2018-07-26 04:29:09 +09:00
parent 3cd3e19199
commit 91b89b79d2
2 changed files with 16 additions and 15 deletions

View file

@ -84,12 +84,11 @@ export default Vue.extend({
(this as any).os.new(MkGameWindow); (this as any).os.new(MkGameWindow);
}, },
goToTop(e: HTMLElement) { goToTop() {
if (e.classList.contains('active')) window.scrollTo({
window.scrollTo({ top: 0,
top: 0, behavior: 'smooth'
behavior: 'smooth' });
});
} }
} }
}); });

View file

@ -45,14 +45,7 @@ export default Vue.extend({
XPost, XPost,
XClock, XClock,
}, },
methods: {
goToTop() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
}
},
mounted() { mounted() {
this.$store.commit('setUiHeaderHeight', 48); this.$store.commit('setUiHeaderHeight', 48);
@ -104,7 +97,16 @@ export default Vue.extend({
}, 2500); }, 2500);
} }
} }
} },
methods: {
goToTop() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
}
},
}); });
</script> </script>