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.
42 lines
898 B
42 lines
898 B
<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>
|