123456789101112131415161718192021222324 |
- <template>
- <el-menu mode="vertical" theme="dark" :default-active="$route.path">
- <sidebar-item :routes="routes"></sidebar-item>
- </el-menu>
- </template>
- <script>
- import SidebarItem from './SidebarItem'
- export default {
- components: { SidebarItem },
- computed: {
- routes() {
- return this.$router.options.routes
- }
- }
- }
- </script>
- <style rel="stylesheet/scss" lang="scss" scoped>
- .el-menu {
- min-height: 100%;
- }
- </style>
|