mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
7 lines
174 B
JavaScript
7 lines
174 B
JavaScript
|
/**
|
||
|
* https://nuxtjs.org/docs/configuration-glossary/configuration-router/#scrollbehavior
|
||
|
*/
|
||
|
export default function (to, _from, savedPosition) {
|
||
|
return { x: 0, y: 0 }
|
||
|
}
|