41 lines
790 B
Vue
41 lines
790 B
Vue
<script setup lang="ts">
|
|
import alertBanner from '@/components/alertBanner.vue';
|
|
import accountDataCard from './accountDataCard.vue';
|
|
import accountManagingCard from './accountManagingCard.vue';
|
|
import addressesCard from './addressesCard.vue';
|
|
import paymentsCard from './paymentsCard.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<v-container max-width="1000">
|
|
<v-row>
|
|
<v-col>
|
|
<alert-banner />
|
|
</v-col>
|
|
</v-row>
|
|
|
|
<v-row>
|
|
<v-col>
|
|
<account-data-card />
|
|
</v-col>
|
|
</v-row>
|
|
|
|
<v-row>
|
|
<v-col>
|
|
<addresses-card />
|
|
</v-col>
|
|
</v-row>
|
|
|
|
<v-row>
|
|
<v-col>
|
|
<payments-card />
|
|
</v-col>
|
|
</v-row>
|
|
|
|
<v-row>
|
|
<v-col>
|
|
<account-managing-card />
|
|
</v-col>
|
|
</v-row>
|
|
</v-container>
|
|
</template> |