naive-ui/demo/documentation/components/statistic/enUS/basic.demo.md
Jiwen Bai 6453b90043 Vite doc with vue3 (#315)
* feat(vite-doc): add vite md plugin

* fixed(site-vite): merge conflicts

* fix(vite-doc): some bug in vue rerender,use key to advoid

* feat(vite-doc): finished doc

* fix(vite-doc): import path should be same as normal

* chore(vite-doc): remove useless code

Co-authored-by: Lecong Zhang <50313260+tskirby@users.noreply.github.com>
2020-10-26 15:03:02 +08:00

525 B

Basic

<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>
import mdSave from 'naive-ui/lib/icons/md-save.vue'

export default {
  components: {
    mdSave
  }
}