mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-27 08:02:01 +00:00
fix: compile error when using scrollBehavior
When compiling with babel as middleware the scrollBehavior function was transpiling in incorrect way. Double function function fixes #1516
This commit is contained in:
parent
138edc7bfd
commit
d4563b7f85
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user