mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-30 12:52:43 +08:00
529 B
529 B
基础用法
<n-row>
<n-col :span="12">
<n-statistic label="统计数据" :value="99">
<template v-slot:prefix>
<n-icon>
<md-save/>
</n-icon>
</template>
<template v-slot:suffix>
/ 100
</template>
</n-statistic>
</n-col>
<n-col :span="12">
<n-statistic label="活跃用户" value="1,234,123">
</n-statistic>
</n-col>
</n-row>
import { MdSave } from '@vicons/ionicons-v4'
export default {
components: {
MdSave
}
}