Fix Maximum Call Size Stack

This commit is contained in:
Sébastien Chopin 2017-08-29 20:53:50 +02:00
parent db118f1b65
commit b49713a096

View File

@ -11,7 +11,7 @@ if (process.browser) {
} }
} }
export function applyAsyncData (Component, asyncData = {}) { export function applyAsyncData (Component, asyncData) {
const ComponentData = Component.options.data || noopData const ComponentData = Component.options.data || noopData
// Prevent calling this method for each request on SSR context // Prevent calling this method for each request on SSR context
if (!asyncData && Component.options.hasAsyncData) { if (!asyncData && Component.options.hasAsyncData) {