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

24 lines
801 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>