Merge pull request #1517 from awronski/dev

fix: compile error when using scrollBehavior
This commit is contained in:
Sébastien Chopin 2017-08-29 17:55:29 +02:00 committed by GitHub
commit d29297fdfb
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ uniqBy(_components, '_name').forEach((route) => { %>const <%= route._name %> = (
<% }) %>
<% if (router.scrollBehavior) { %>
const scrollBehavior = <%= serialize(router.scrollBehavior).replace('scrollBehavior(', 'function(') %>
const scrollBehavior = <%= serialize(router.scrollBehavior).replace('scrollBehavior(', 'function(').replace('function function', 'function') %>
<% } else { %>
const scrollBehavior = (to, from, savedPosition) => {
// SavedPosition is only available for popstate navigations.