import { defineComponent } from 'vue'; import { Card, Col, Row, Statistic } from 'ant-design-vue'; import styles from './index.module.less'; interface StatItem { title: string; value: number; suffix: string; precision?: number; } /** * 工作台 / 仪表盘 */ export default defineComponent({ name: 'Dashboard', setup() { const stats: StatItem[] = [ { title: '今日访问', value: 1280, suffix: '次' }, { title: '活跃用户', value: 368, suffix: '人' }, { title: '订单总数', value: 9920, suffix: '单' }, { title: '处理率', value: 96.8, suffix: '%', precision: 1 }, ]; return () => (

工作台

{stats.map((item) => ( ))}

欢迎使用 CPMS 运营平台。这是一个基于 Vue 3 + Vite + TypeScript + Ant Design Vue 搭建的中后台管理项目骨架,采用 TSX 写法,你可以在此基础上继续开发业务功能。

); }, });