The Context
The context provides additional objects/params from Nuxt to Vue components and is available in special nuxt lifecycle areas like asyncData , fetch , plugins , middleware and nuxtServerInit .
Note: "The Context" we refer to here is not to be confused with the
contextobject available inVuex Actions. The two are unrelated.
function (context) {
// Universal keys
const {
app,
store,
route,
params,
query,
env,
isDev,
isHMR,
redirect,
error,
$config
} = context
// Server-side
if (process.server) {
const { req, res, beforeNuxtRender } = context
}
// Client-side
if (process.client) {
const { from, nuxtState } = context
}
}
Universal keys
These keys are available both on client-side and server-side.
app
app (NuxtAppOptions)
The root Vue instance options that includes all your plugins. For example, when using i18n, you can get access to $i18n through context.app.i18n.
store
store (Vuex Store )
Vuex Store instance. Available only if the vuex store is set.
route
route (Vue Router Route )
Vue Router route instance.
params
params (Object)
Alias of route.params.
query
query (Object)
Alias of route.query.
env
env (Object)
Environment variables set in nuxt.config.js, see env API .
isDev
isDev (Boolean)
Boolean to let you know if you're in dev mode, can be useful for caching some data in production.
isHMR
isHMR (Boolean)
Boolean to let you know if the method/middleware is called from webpack hot module replacement (true only on client-side in dev mode).
redirect
redirect (Function)
Use this method to redirect the user to another route, the status code is used on the server-side, defaults to 302. redirect([status,] path [, query]).
Examples:
redirect(302, '/login')
redirect({ name: 'slug', params: { slug: mySlug } })
redirect('https://vuejs.org')
See the Vue Router docs more info on the Location property.
redirect or error in client-side Nuxt plugin due to hydration errors (client content would be different from what it'd expect from the server).A valid workaround would be using window.onNuxtReady(() => { window.$nuxt.$router.push('/your-route') })error
error (Function)
Use this method to show the error page: error(params). The params should have the properties statusCode and message.
$config
$config (Object)
The actual runtime config .
Server-side keys
These keys are available only on the server-side.
req
req (http.Request )
Request from the Node.js server. If Nuxt is used as a middleware, the request object might be different depending on the framework you're using.
Not available via nuxt generate.
Res
res (http.Response )
Response from the Node.js server. If Nuxt is used as a middleware, the res object might be different depending on the framework you're using.
Not available via nuxt generate.
beforeNuxtRender
beforeNuxtRender(fn) (Function)
Use this method to update __NUXT__ variable rendered on client-side, the fn (can be asynchronous) is called with { Components, nuxtState }, see example .
Client-side keys
These keys are available only on client-side.
from
from (Vue Router Route )
The route navigated from.
nuxtState
nuxtState (Object)
Nuxt state, useful for plugins which uses beforeNuxtRender to get the nuxt state on client-side before hydration. Available only in universal mode.
Leoš Literák
Trizotti
Clément Ollivier
Sébastien Chopin
Marcello Bachechi
Rodolphe
Thomas Underwood
Shek Evgeniy
felipesuri
Lukasz Formela
Hugo Torzuoli
Sylvain Marroufin
Kareem Dabbeet
tramplay
Daniel Roe
verebelyicsaba
Adam
Nate Butler
Sandra Rodgers
Arpit Patidar
Matthew Kuehn
Steven DUBOIS
Travis Lindsey
syagawa
Maxime
かる
Al Power
Florent Delerue
quanghm
José Manuel Casani Guerra
Unai Mengual
kazuya kawaguchi
Michael Lynch
Tomachi
pooya parsa
Meir Roth
Brett
Adam Miedema
Thomas Bnt
Kazuki Furukawa
Anthony Ruelle
Christophe Carvalho Vilas-Boas
Roman Harmyder