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.
32 lines
561 B
32 lines
561 B
<template>
|
|
<demo-sort :cols="1">
|
|
<Base />
|
|
<Customize />
|
|
<Vertical />
|
|
<Align />
|
|
</demo-sort>
|
|
</template>
|
|
<script lang="ts">
|
|
import Base from './base.vue';
|
|
import Customize from './customize.vue';
|
|
import Vertical from './vertical.vue';
|
|
import Align from './align.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: {
|
|
Base,
|
|
Customize,
|
|
Vertical,
|
|
Align,
|
|
},
|
|
setup() {
|
|
return {};
|
|
},
|
|
});
|
|
</script>
|