You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
532 B

3 years ago
<template>
<v-row justify="center" align="center">
<v-col cols="12" sm="8" md="6">
<v-card>
<v-card-title class="headline">
{{ $t('main_card_header') }}
3 years ago
</v-card-title>
<v-card-text>
{{ $t('main_card_subheader') }}
3 years ago
</v-card-text>
</v-card>
</v-col>
<v-col cols="12" sm="12" md="12">
<wishlist />
</v-col>
<v-col cols="12" sm="12" md="12">
<claimedwishes />
</v-col>
</v-row>
</template>
<script>
export default {
}
</script>