frontend/src/views/PersonalView.vue

12 lines
189 B
Vue
Raw Normal View History

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>