mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-13 16:34:45 +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')
|
|
},
|
|
}
|