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
609 B
33 lines
609 B
<template>
|
|
<demo-sort>
|
|
<basic />
|
|
<disabled />
|
|
<text-and-icon />
|
|
<size />
|
|
<loading />
|
|
</demo-sort>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import Basic from './basic.vue';
|
|
import Disabled from './disabled.vue';
|
|
import Text from './text.vue';
|
|
import Size from './size.vue';
|
|
import Loading from './loading.vue';
|
|
import CN from '../index.zh-CN.md';
|
|
import US from '../index.en-US.md';
|
|
|
|
export default defineComponent({
|
|
CN,
|
|
US,
|
|
components: {
|
|
Basic,
|
|
Disabled,
|
|
TextAndIcon: Text, // text 无法识别
|
|
Size,
|
|
Loading,
|
|
},
|
|
});
|
|
</script>
|