🌈 An enterprise-class UI components based on Ant Design and Vue. 🐜
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.
 
 
 
 

33 lines
676 B

<template>
<demo-sort :cols="1">
<basic />
<simple />
<customize />
<config-provider />
<description />
</demo-sort>
</template>
<script lang="ts">
import Basic from './basic.vue';
import Simple from './simple.vue';
import Customize from './customize.vue';
import ConfigProvider from './config-provider.vue';
import Description from './description.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,
Simple,
Customize,
ConfigProvider,
Description,
},
setup() {
return {};
},
});
</script>