21 lines
368 B
JavaScript
21 lines
368 B
JavaScript
//默认就是根store,不需要namespaced:true,访问的时候直接写根级别的key : this.$store.dispatch('example)
|
||
|
||
export const state = () => ({
|
||
|
||
})
|
||
|
||
export const mutations = {
|
||
|
||
}
|
||
|
||
export const actions = {
|
||
// 只在服务端渲染时运行一次
|
||
async nuxtServerInit({ dispatch, commit }, { app, req }) {
|
||
|
||
}
|
||
}
|
||
|
||
export const getters = {
|
||
|
||
}
|