2021-07-25 13:23:25 +02:00
|
|
|
import { createStore } from 'vuex'
|
2021-08-11 22:21:26 +02:00
|
|
|
|
2021-08-11 18:33:02 +02:00
|
|
|
import root from '@/store/modules/root'
|
2021-08-22 20:38:22 +02:00
|
|
|
import { IRootState } from '@/store/modules/root/types'
|
2021-07-24 20:56:37 +02:00
|
|
|
|
2021-08-11 18:33:02 +02:00
|
|
|
const store = createStore<IRootState>(root)
|
|
|
|
|
|
|
|
export default store
|