feat: move base store to stores

This commit is contained in:
Dominik Pschenitschni 2022-09-24 12:49:25 +02:00
parent d1d7cd535e
commit df74f9d80c
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 2 additions and 2 deletions

View File

@ -12,14 +12,14 @@ import {
LOADING_MODULE, LOGO_VISIBLE,
MENU_ACTIVE,
QUICK_ACTIONS_ACTIVE,
} from './mutation-types'
} from '../store/mutation-types'
import ListModel from '@/models/list'
import ListService from '../services/list'
import {checkAndSetApiUrl} from '@/helpers/checkAndSetApiUrl'
import type { RootStoreState, StoreState } from './types'
import type { RootStoreState, StoreState } from '../store/types'
import pinia from '@/pinia'
import {useAuthStore} from '@/stores/auth'