🌈 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.
 
 
 
 

26 lines
456 B

<template>
<demo-sort>
<basic />
<on-change />
<traget />
</demo-sort>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import CN from '../index.zh-CN.md';
import US from '../index.en-US.md';
import Basic from './basic.vue';
import OnChange from './on-change.vue';
import Traget from './target.vue';
export default defineComponent({
CN,
US,
components: {
Basic,
OnChange,
Traget,
},
});
</script>