Vue Controlling Scroll

up:: Vue When going to a new page, always jump to the top. Except when the user was already on the site. Then there is a savedPosition and we go there.

scrollBehaviour(to, from, savedPosition) {
	if (savedPosition) { return savedPosition };
	return { left: 0, top: 0 } 
}