jinjianback1.1/src/views/layout/components/Sidebar/index.vue

24 lines
440 B
Vue
Raw Normal View History

2017-06-26 13:38:24 +08:00
<template>
2017-08-30 17:42:06 +08:00
<el-menu mode="vertical" theme="dark" :default-active="$route.path">
2017-10-18 15:05:30 +08:00
<sidebar-item :routes="routes"></sidebar-item>
2017-08-30 17:42:06 +08:00
</el-menu>
2017-06-26 13:38:24 +08:00
</template>
<script>
2017-08-30 17:42:06 +08:00
import SidebarItem from './SidebarItem'
export default {
components: { SidebarItem },
computed: {
2017-10-18 15:05:30 +08:00
routes() {
return this.$router.options.routes
}
2017-08-30 17:42:06 +08:00
}
}
2017-06-26 13:38:24 +08:00
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
2017-06-28 23:02:22 +08:00
.el-menu {
2017-08-30 17:42:06 +08:00
min-height: 100%;
2017-06-28 23:02:22 +08:00
}
2017-06-26 13:38:24 +08:00
</style>