37 lines
670 B
Vue
37 lines
670 B
Vue
<template>
|
|
<demo-sort>
|
|
<basic />
|
|
<color />
|
|
<pending />
|
|
<custom />
|
|
<alternate />
|
|
<right />
|
|
</demo-sort>
|
|
</template>
|
|
<script lang="ts">
|
|
import Basic from './basic.vue';
|
|
import Color from './color.vue';
|
|
import Pending from './pending.vue';
|
|
import Custom from './custom.vue';
|
|
import Alternate from './alternate.vue';
|
|
import Right from './right.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,
|
|
Color,
|
|
Pending,
|
|
Custom,
|
|
Alternate,
|
|
Right,
|
|
},
|
|
setup() {
|
|
return {};
|
|
},
|
|
});
|
|
</script>
|