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.
29 lines
540 B
29 lines
540 B
<template>
|
|
<div>
|
|
<Horizontal />
|
|
<InlineCollapsed />
|
|
<SiderCurrent />
|
|
<SwitchMode />
|
|
<Theme />
|
|
<Vertical />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import Horizontal from './horizontal'
|
|
import InlineCollapsed from './inline-collapsed'
|
|
import SiderCurrent from './sider-current'
|
|
import SwitchMode from './switch-mode'
|
|
import Theme from './theme'
|
|
import Vertical from './vertical'
|
|
export default {
|
|
components: {
|
|
Horizontal,
|
|
InlineCollapsed,
|
|
SiderCurrent,
|
|
SwitchMode,
|
|
Theme,
|
|
Vertical,
|
|
},
|
|
}
|
|
</script>
|