@click on top nav makes window scroll to top

This commit is contained in:
shpuld 2017-02-18 22:55:16 +02:00
parent e6f91badfb
commit 7b6719b96d
2 changed files with 4 additions and 1 deletions

View file

@ -24,6 +24,9 @@ export default {
methods: {
activatePanel (panelName) {
this.mobileActivePanel = panelName
},
scrollToTop () {
window.scrollTo(0, 0)
}
}
}