Merge pull request #1600 from whtsky/serverState

rename `context.serverState` to `context.nuxtState`
This commit is contained in:
Sébastien Chopin 2017-09-07 13:39:03 +02:00 committed by GitHub
commit 45b6c9320b

View File

@ -109,7 +109,7 @@ export function getContext (context, app) {
ctx.beforeNuxtRender = (fn) => context.beforeRenderFns.push(fn)
}
if (ctx.isClient && window.__NUXT__) {
ctx.serverState = window.__NUXT__
ctx.nuxtState = window.__NUXT__
}
return ctx
}