Files
Jog/jog-frontend/src/views/app/Dashboard.vue
T
2026-05-17 15:55:06 +08:00

23 lines
636 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>
<h2>控制台</h2>
<p>欢迎{{ userStore.userInfo?.nickname }}</p>
<el-row :gutter="20" style="margin-top: 20px;">
<el-col :span="8">
<el-card><el-statistic title="我的文章" :value="0" /></el-card>
</el-col>
<el-col :span="8">
<el-card><el-statistic title="总浏览量" :value="0" /></el-card>
</el-col>
<el-col :span="8">
<el-card><el-statistic title="获赞数" :value="0" /></el-card>
</el-col>
</el-row>
</div>
</template>
<script setup>
import { useUserStore } from '@/stores/user'
const userStore = useUserStore()
</script>