mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
31 lines
521 B
Markdown
31 lines
521 B
Markdown
# Basic
|
|
```html
|
|
<n-row>
|
|
<n-col :span="12">
|
|
<n-statistic label="Statistic" :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="Active Users" value="1,234,123">
|
|
</n-statistic>
|
|
</n-col>
|
|
</n-row>
|
|
```
|
|
|
|
```js
|
|
import mdSave from 'naive-ui/lib/icons/md-save'
|
|
|
|
export default {
|
|
components: {
|
|
mdSave
|
|
}
|
|
}
|
|
``` |