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/carousel/demo/index.vue

37 lines
699 B

<template>
<demo-sort :cols="1">
<Basic />
<Position />
<Fade />
<Autoplay />
<CustomPaging />
<CustomArrows />
</demo-sort>
</template>
<script lang="ts">
import Basic from './basic.vue';
import Fade from './fade.vue';
import Autoplay from './autoplay.vue';
import Position from './position.vue';
import CustomPaging from './customPaging.vue';
import CustomArrows from './customArrows.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,
Fade,
Autoplay,
Position,
CustomPaging,
CustomArrows,
},
});
</script>