mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-13 08:24:48 +00:00
10 lines
165 B
JavaScript
10 lines
165 B
JavaScript
export const state = () => ({})
|
|
|
|
export const mutations = {}
|
|
|
|
export const actions = {
|
|
async nuxtServerInit({ dispatch }) {
|
|
await dispatch('auth/init')
|
|
},
|
|
}
|