Skip to content
Snippets Groups Projects
Commit 7b6719b9 authored by shpuld's avatar shpuld
Browse files

@click on top nav makes window scroll to top

parent e6f91bad
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,9 @@ export default {
methods: {
activatePanel (panelName) {
this.mobileActivePanel = panelName
},
scrollToTop () {
window.scrollTo(0, 0)
}
}
}
<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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment