mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
29 lines
511 B
Vue
29 lines
511 B
Vue
<template>
|
|
<demo-sort :cols="1">
|
|
<Locale />
|
|
<Size />
|
|
<Direction />
|
|
<Theme />
|
|
</demo-sort>
|
|
</template>
|
|
|
|
<script>
|
|
import Locale from './locale.vue';
|
|
import Size from './size.vue';
|
|
import Direction from './direction.vue';
|
|
import Theme from './theme.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: {
|
|
Locale,
|
|
Size,
|
|
Theme,
|
|
Direction,
|
|
},
|
|
});
|
|
</script>
|