2025-09-13 23:59:32 +03:00
|
|
|
<script setup>
|
|
|
|
|
import List from '@/views/PersonalView/List.vue'
|
2025-09-12 20:23:58 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-09-14 14:20:19 +03:00
|
|
|
<n-card bordered title="Personal info">
|
|
|
|
|
<List />
|
|
|
|
|
</n-card>
|
2025-09-12 20:23:58 +03:00
|
|
|
</template>
|
|
|
|
|
|
2025-09-14 14:20:19 +03:00
|
|
|
<style scoped></style>
|