Files
2024-09-01 18:54:23 +05:00

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,
},
},
},
})
}