forked from vueComponent/ant-design-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.vue
41 lines (39 loc) · 898 Bytes
/
index.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<template>
<demo-sort :cols="1">
<horizontal />
<inline />
<inline-collapsed />
<sider-current />
<vertical />
<theme />
<submenu-theme />
<switch-mode />
</demo-sort>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import CN from '../index.zh-CN.md';
import US from '../index.en-US.md';
import Horizontal from './horizontal.vue';
import InlineCollapsed from './inline-collapsed.vue';
import Inline from './inline.vue';
import SiderCurrent from './sider-current.vue';
import SwitchMode from './switch-mode.vue';
import Theme from './theme.vue';
import Vertical from './vertical.vue';
import SubmenuTheme from './submenu-theme.vue';
export default defineComponent({
CN,
US,
components: {
Horizontal,
InlineCollapsed,
Inline,
SiderCurrent,
SwitchMode,
Theme,
Vertical,
SubmenuTheme,
},
});
</script>