18 lines
380 B
Vue
18 lines
380 B
Vue
<script setup lang="ts">
|
|
import ProfileCard from './cards/ProfileCard.vue'
|
|
import LinksCard from './cards/LinksCard.vue'
|
|
import EducationCard from './cards/EducationCard.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<v-row>
|
|
<v-col> <ProfileCard /></v-col>
|
|
</v-row>
|
|
<v-row>
|
|
<v-col> <LinksCard /></v-col>
|
|
</v-row>
|
|
<v-row>
|
|
<v-col> <EducationCard /></v-col>
|
|
</v-row>
|
|
</template>
|