18 lines
311 B
JavaScript
18 lines
311 B
JavaScript
import { createStore } from 'vuex'
|
|
import nova from './nova'
|
|
import notifications from './notifications'
|
|
|
|
export function createNovaStore() {
|
|
return createStore({
|
|
...nova,
|
|
modules: {
|
|
nova: {
|
|
namespaced: true,
|
|
modules: {
|
|
notifications,
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|