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.
38 lines
703 B
38 lines
703 B
<template>
|
|
<demo-sort>
|
|
<basic />
|
|
<multiple />
|
|
<!-- <tree-data /> -->
|
|
<checkable />
|
|
<suffix />
|
|
<async />
|
|
</demo-sort>
|
|
</template>
|
|
<script lang="ts">
|
|
import Basic from './basic.vue';
|
|
import Multiple from './multiple.vue';
|
|
// import TreeData from './treeData.vue';
|
|
import Checkable from './checkable.vue';
|
|
import Suffix from './suffix.vue';
|
|
import Async from './async.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,
|
|
Multiple,
|
|
// TreeData,
|
|
Checkable,
|
|
Suffix,
|
|
Async,
|
|
},
|
|
setup() {
|
|
return {};
|
|
},
|
|
});
|
|
</script>
|