mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 12:57:28 +00:00
15 lines
263 B
JavaScript
15 lines
263 B
JavaScript
|
|
import Vue from 'vue'
|
||
|
|
import Vuex from 'vuex'
|
||
|
|
import * as notification from '@/store/modules/notification'
|
||
|
|
|
||
|
|
Vue.use(Vuex)
|
||
|
|
|
||
|
|
const debug = process.env.NODE_ENV !== 'production'
|
||
|
|
|
||
|
|
export default new Vuex.Store({
|
||
|
|
modules: {
|
||
|
|
notification,
|
||
|
|
},
|
||
|
|
strict: debug
|
||
|
|
})
|