renamed KontoOverview to AccountOverview. Moved AccountOverview folder into Pages folder

This commit is contained in:
Moriz Wahl 2021-04-30 15:34:52 +02:00
parent 1dad6dff06
commit d5ba30df6f
11 changed files with 12 additions and 12 deletions

View File

@ -9,7 +9,7 @@ const routes = [
},
{
path: '/overview',
component: () => import('../views/Pages/KontoOverview.vue'),
component: () => import('../views/Pages/AccountOverview.vue'),
meta: {
requiresAuth: true,
},

View File

@ -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', () => {

View File

@ -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',

View File

@ -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',

View File

@ -88,7 +88,7 @@
<script>
import axios from 'axios'
import communityAPI from '../../apis/communityAPI'
import communityAPI from '../../../apis/communityAPI'
export default {
name: 'GddTable',

View File

@ -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'

View File

@ -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: {