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.
36 lines
707 B
36 lines
707 B
<template>
|
|
<demo-sort>
|
|
<basic />
|
|
<overlay />
|
|
<router />
|
|
<separator />
|
|
<separator-indepent />
|
|
<with-icon />
|
|
</demo-sort>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import US from './../index.en-US.md';
|
|
import CN from './../index.zh-CN.md';
|
|
import Basic from './basic.vue';
|
|
import Overlay from './overlay.vue';
|
|
import Router from './router.vue';
|
|
import Separator from './separator.vue';
|
|
import SeparatorIndepent from './separator-indepent.vue';
|
|
import WithIcon from './withIcon.vue';
|
|
|
|
export default defineComponent({
|
|
CN,
|
|
US,
|
|
components: {
|
|
Basic,
|
|
Overlay,
|
|
Router,
|
|
Separator,
|
|
SeparatorIndepent,
|
|
WithIcon,
|
|
},
|
|
});
|
|
</script>
|