XinXiKuaiBaoYuan/vue-info-reporter/src/views/Personal.vue

24 lines
801 B
Vue
Raw Normal View History

<template>
<div class="flex-1 flex flex-col min-h-0">
<main class="flex-1 p-6 overflow-auto">
<div class="max-w-4xl mx-auto">
<div class="bg-white rounded-lg shadow-sm border border-gray-200 p-8 text-center">
<div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mx-auto mb-4">
<span class="text-white text-xl font-medium"></span>
</div>
<h2 class="text-xl font-semibold text-gray-900 mb-2">个人空间</h2>
<p class="text-gray-600">该功能已开发完成等待集成...</p>
</div>
</div>
</main>
</div>
</template>
<script setup lang="ts">
import { useAppStore } from '@/stores/app'
const appStore = useAppStore()
// const { toggleMobileSidebar } = appStore
</script>