Нет описания

Sidebar.vue 440B

123456789101112131415161718192021222324
  1. <template>
  2. <el-menu mode="vertical" theme="dark" :default-active="$route.path">
  3. <sidebar-item :routes="routes"></sidebar-item>
  4. </el-menu>
  5. </template>
  6. <script>
  7. import SidebarItem from './SidebarItem'
  8. export default {
  9. components: { SidebarItem },
  10. computed: {
  11. routes() {
  12. return this.$router.options.routes
  13. }
  14. }
  15. }
  16. </script>
  17. <style rel="stylesheet/scss" lang="scss" scoped>
  18. .el-menu {
  19. min-height: 100%;
  20. }
  21. </style>