Skip to content

Commit e2df58c

Browse files
committed
Added scroll behavior
1 parent d66c0a6 commit e2df58c

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

src/main.js

+14-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,20 @@ Vue.use(VueRouter);
77

88
const router = new VueRouter({
99
routes: routes,
10-
mode: 'history'
10+
mode: 'history',
11+
scrollBehavior(to, from, savedPosition) {
12+
if (to.hash) {
13+
return {
14+
selector: to.hash
15+
};
16+
}
17+
18+
if (savedPosition) {
19+
return savedPosition;
20+
}
21+
22+
return { x: 0, y: 0 };
23+
}
1124
});
1225

1326
Vue.filter('currency', function(value) {

0 commit comments

Comments
 (0)