2025-04-12 17:39:38 +08:00

17 lines
391 B
Vue

<template>
<div class="p-5">
<div class="space-y-5">
<AccountProfile />
<AccountReferral />
<AccountPartner />
</div>
</div>
</template>
<script setup>
import AccountProfile from './AccountProfile.vue';
import AccountReferral from './AccountReferral.vue';
import AccountPartner from './AccountPartner.vue';
document.title = '设置 - 个人资料';
</script>