Format code.

This commit is contained in:
Bryan Mauger 2023-04-14 10:08:29 -04:00
parent 3eb7df9f21
commit de936953bc

View file

@ -163,9 +163,9 @@ const router = createRouter({
routes,
//Cause "page" to begin at the top when route chanages.
scrollBehavior(to, from, savedPosition) {
// always scroll to top
return { top: 0 }
},
// always scroll to top
return { top: 0 };
},
});
//---------------------------------------------------------- Router Functions ----------------------------------------------------------