mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
renamed KontoOverview to AccountOverview. Moved AccountOverview folder into Pages folder
This commit is contained in:
parent
1dad6dff06
commit
d5ba30df6f
@ -9,7 +9,7 @@ const routes = [
|
||||
},
|
||||
{
|
||||
path: '/overview',
|
||||
component: () => import('../views/Pages/KontoOverview.vue'),
|
||||
component: () => import('../views/Pages/AccountOverview.vue'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
},
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
import { shallowMount } from '@vue/test-utils'
|
||||
import KontoOverview from './KontoOverview'
|
||||
import AccountOverview from './AccountOverview'
|
||||
|
||||
const localVue = global.localVue
|
||||
|
||||
describe('KontoOverview', () => {
|
||||
describe('AccountOverview', () => {
|
||||
let wrapper
|
||||
|
||||
let mocks = {
|
||||
@ -11,7 +11,7 @@ describe('KontoOverview', () => {
|
||||
}
|
||||
|
||||
const Wrapper = () => {
|
||||
return shallowMount(KontoOverview, { localVue, mocks })
|
||||
return shallowMount(AccountOverview, { localVue, mocks })
|
||||
}
|
||||
|
||||
describe('shallow Mount', () => {
|
||||
@ -24,9 +24,9 @@
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import GddStatus from '../KontoOverview/GddStatus.vue'
|
||||
import GddSend from '../KontoOverview/GddSend.vue'
|
||||
import GddTable from '../KontoOverview/GddTable.vue'
|
||||
import GddStatus from './AccountOverview/GddStatus.vue'
|
||||
import GddSend from './AccountOverview/GddSend.vue'
|
||||
import GddTable from './AccountOverview/GddTable.vue'
|
||||
|
||||
export default {
|
||||
name: 'Overview',
|
||||
@ -194,7 +194,7 @@
|
||||
<script>
|
||||
import { QrcodeStream, QrcodeDropZone } from 'vue-qrcode-reader'
|
||||
import { BIcon } from 'bootstrap-vue'
|
||||
import communityAPI from '../../apis/communityAPI.js'
|
||||
import communityAPI from '../../../apis/communityAPI.js'
|
||||
|
||||
export default {
|
||||
name: 'GddSent',
|
||||
@ -88,7 +88,7 @@
|
||||
|
||||
<script>
|
||||
import axios from 'axios'
|
||||
import communityAPI from '../../apis/communityAPI'
|
||||
import communityAPI from '../../../apis/communityAPI'
|
||||
|
||||
export default {
|
||||
name: 'GddTable',
|
||||
@ -31,8 +31,8 @@
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import GddWorkTable from '../../views/KontoOverview/GddWorkTable.vue'
|
||||
import GddAddWork2 from '../../views/KontoOverview/GddAddWork2.vue'
|
||||
import GddWorkTable from '../../views/Pages/AccountOverview/GddWorkTable.vue'
|
||||
import GddAddWork2 from '../../views/Pages/AccountOverview/GddAddWork2.vue'
|
||||
|
||||
import * as chartConfigs from '@/components/Charts/config'
|
||||
import LineChart from '@/components/Charts/LineChart'
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import GddTable from '../../views/KontoOverview/GddTable.vue'
|
||||
import GddTable from '../../views/Pages/AccountOverview/GddTable.vue'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user