forked from AkkomaGang/akkoma-fe
@click on top nav makes window scroll to top
This commit is contained in:
parent
e6f91badfb
commit
7b6719b96d
2 changed files with 4 additions and 1 deletions
|
@ -24,6 +24,9 @@ export default {
|
|||
methods: {
|
||||
activatePanel (panelName) {
|
||||
this.mobileActivePanel = panelName
|
||||
},
|
||||
scrollToTop () {
|
||||
window.scrollTo(0, 0)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div id="app" v-bind:style="style" class="base02-background">
|
||||
<nav class='container base01-background base04'>
|
||||
<nav class='container base01-background base04' @click="scrollToTop()">
|
||||
<div class='inner-nav' :style="logoStyle">
|
||||
<div class='item'>
|
||||
<router-link :to="{ name: 'root'}">{{sitename}}</router-link>
|
||||
|
|
Loading…
Reference in a new issue