mns-mini-zabor/plugins/scroll.ts

7 lines
220 B
TypeScript

export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.$router.options.scrollBehavior = (to, from, savedPosition) => {
if (to.hash) {
return { el: to.hash, behavior: 'smooth', }
}
}
})