mirror of
https://github.com/nuxt/nuxt.git
synced 2025-03-01 14:53:28 +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) { %>
|
<% if (router.scrollBehavior) { %>
|
||||||
const scrollBehavior = <%= serialize(router.scrollBehavior).replace('scrollBehavior(', 'function(') %>
|
const scrollBehavior = <%= serialize(router.scrollBehavior).replace('scrollBehavior(', 'function(').replace('function function', 'function') %>
|
||||||
<% } else { %>
|
<% } else { %>
|
||||||
const scrollBehavior = (to, from, savedPosition) => {
|
const scrollBehavior = (to, from, savedPosition) => {
|
||||||
// SavedPosition is only available for popstate navigations.
|
// SavedPosition is only available for popstate navigations.
|
||||||
|
Loading…
Reference in New Issue
Block a user