feat: 提交其余本地改动

This commit is contained in:
2026-02-16 12:53:23 +08:00
parent 3395e5d91c
commit 07495f8c35
7 changed files with 160 additions and 12 deletions

View File

@@ -0,0 +1,19 @@
<script setup lang="ts">
import { Page } from '@vben/common-ui';
import { Empty } from 'ant-design-vue';
</script>
<template>
<Page title="个人中心">
<div class="rounded-lg bg-card p-5">
<Empty description="个人中心建设中,敬请期待" />
</div>
</Page>
</template>
<style scoped lang="scss">
.bg-card {
background-color: var(--el-bg-color-overlay);
}
</style>