
Sign up for a plan to instantly unlock all premium lessons.
Premium Features
export const state = () => ({
user: null
})
export const mutations = {
SET_USER(state, user) {
state.user = user
}
}
export const actions = {
nuxtServerInit({ commit }, { req }) {
if (req.session && req.session.user) {
commit('SET_USER', req.session.user)
}
}
}Comments
Want to participate?
Create a free Chris Courses account to begin
after copying, pasting and saving the code in the store folder the vue devtool shows no Vuex store detected