ant-design-vue/antdv-demo/docs/statistic/demo/basic.md

19 lines
292 B
Markdown
Raw Permalink Normal View History

2021-03-12 07:48:30 +00:00
<cn>
#### 基本
简单展示
</cn>
<us>
#### Basic
Simplest Usage.
</us>
```vue
<template>
<div>
<a-statistic title="Active Users" :value="112893" style="margin-right: 50px" />
<a-statistic title="Account Balance (CNY)" :precision="2" :value="112893" />
</div>
</template>
```