You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/statistic/demo/index.vue

34 lines
626 B

<template>
<demo-sort>
<basic />
<unit />
<card />
<countdown />
<countdown-slot />
</demo-sort>
</template>
<script lang="ts">
import Basic from './basic.vue';
import Unit from './unit.vue';
import Card from './card.vue';
import Countdown from './countdown.vue';
import CountdownSlot from './countdown-slot.vue';
import CN from '../index.zh-CN.md';
import US from '../index.en-US.md';
import { defineComponent } from 'vue';
export default defineComponent({
CN,
US,
components: {
Basic,
Unit,
Card,
Countdown,
CountdownSlot,
},
setup() {
return {};
},
});
</script>