ar-rohman / glow

Global Weather
https://glow-forecast.web.app
0 stars 0 forks source link

Vue Router go to top on new page #25

Closed ar-rohman closed 2 years ago

ar-rohman commented 2 years ago

Back to top when link clicked or move to another page

// src/router.js
const router = new VueRouter({
...

  scrollBehavior (to, from, savedPosition) {
    return { x: 0, y: 0 };
  }
});

export default router;