Client - minor refactor

This commit is contained in:
Sam
2021-08-11 22:21:26 +02:00
parent 72db7afe44
commit 3dc1e46329
20 changed files with 32 additions and 12 deletions

View File

@ -1,4 +1,5 @@
import { GetterTree } from 'vuex'
import { ROOT_STORE } from '@/store/constants'
import { IRootState, IRootGetters } from '@/store/modules/root/interfaces'

View File

@ -1,4 +1,5 @@
import { Module, ModuleTree } from 'vuex'
import { getters } from '@/store/modules/root/getters'
import { IRootState } from '@/store/modules/root/interfaces'
import { mutations } from '@/store/modules/root/mutations'

View File

@ -1,4 +1,5 @@
import { MutationTree } from 'vuex'
import { ROOT_STORE } from '@/store/constants'
import { IRootState } from '@/store/modules/root/interfaces'
import { TRootMutations } from '@/store/modules/root/types'