mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
18 lines
313 B
JavaScript
18 lines
313 B
JavaScript
|
export const state = () => ({
|
||
|
user: null
|
||
|
})
|
||
|
|
||
|
export const mutations = {
|
||
|
SET_USER (state, user) {
|
||
|
state.user = user
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export const actions = {
|
||
|
FETCH_USER ({ commit }) {
|
||
|
commit('SET_USER', {
|
||
|
name: (process.client ? 'C' : 'S') + ' Æ A-' + (10 + Math.round(Math.random() * 10))
|
||
|
})
|
||
|
}
|
||
|
}
|