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.
39 lines
668 B
39 lines
668 B
<template>
|
|
<demo-sort>
|
|
<basic />
|
|
<type />
|
|
<dynamic />
|
|
<badge />
|
|
<group />
|
|
<responsive />
|
|
</demo-sort>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Basic from './basic.vue';
|
|
import Type from './type.vue';
|
|
import Dynamic from './dynamic.vue';
|
|
import Badge from './badge.vue';
|
|
import Group from './group.vue';
|
|
import Responsive from './responsive.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,
|
|
Type,
|
|
Dynamic,
|
|
Badge,
|
|
Group,
|
|
Responsive,
|
|
},
|
|
setup() {
|
|
return {};
|
|
},
|
|
});
|
|
</script>
|