mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
resolve more relative paths
This commit is contained in:
parent
5883b18a93
commit
92c5fe2d96
@ -12,8 +12,8 @@
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import locales from '../locales/'
|
||||
import { updateUserInfos } from '../graphql/mutations'
|
||||
import locales from '@/locales/'
|
||||
import { updateUserInfos } from '@/graphql/mutations'
|
||||
|
||||
export default {
|
||||
name: 'LanguageSwitch',
|
||||
|
||||
@ -2,7 +2,7 @@ import Vue from 'vue'
|
||||
import Vuex from 'vuex'
|
||||
import createPersistedState from 'vuex-persistedstate'
|
||||
import { localeChanged } from 'vee-validate'
|
||||
import i18n from '../i18n.js'
|
||||
import i18n from '@/i18n.js'
|
||||
|
||||
Vue.use(Vuex)
|
||||
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
import { mutations, actions } from './store'
|
||||
import Vuex from 'vuex'
|
||||
import Vue from 'vue'
|
||||
import i18n from '../i18n.js'
|
||||
import i18n from '@/i18n.js'
|
||||
import { localeChanged } from 'vee-validate'
|
||||
|
||||
jest.mock('vuex')
|
||||
jest.mock('../i18n.js')
|
||||
jest.mock('@/i18n.js')
|
||||
jest.mock('vee-validate', () => {
|
||||
return {
|
||||
localeChanged: jest.fn(),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user