Browse Source

add menu layout and cite

DYaiu 4 years ago
parent
commit
695b7632d5
2 changed files with 46 additions and 1 deletions
  1. 7 1
      src/App.vue
  2. 39 0
      src/layout/Sidebar.vue

+ 7 - 1
src/App.vue

@@ -1,12 +1,18 @@
 <template>
   <div id="app">
+    <Sidebar></Sidebar>
     <router-view />
   </div>
 </template>
 
 <script>
+import Sidebar from "./layout/Sidebar";
+
 export default {
-  name: "App"
+  name: "App",
+  components: {
+    Sidebar: Sidebar
+  }
 };
 </script>
 

+ 39 - 0
src/layout/Sidebar.vue

@@ -0,0 +1,39 @@
+<template>
+  <div>
+    <el-menu
+      :default-active="$route.path"
+      background-color="#545c64"
+      text-color="#fff"
+      active-text-color="#ffd04b"
+      mode="vertical"
+      router
+      :collapse="true"
+    >
+      <template v-for="(item, index) in routers">
+        <el-menu-item :index="item.path" :key="index">{{item.title}}</el-menu-item>
+      </template>
+    </el-menu>
+  </div>
+</template>
+
+<script>
+import Router from "@/router";
+export default {
+  name: "sidebar",
+  data() {
+    return { routers: Router };
+  },
+  computed: {
+    getrouters() {
+      //路由表
+      return Router;
+    }
+  },
+  created() {
+    console.log(Router);
+    this.routers = Router.options.routes;
+    console.log(this.routers);
+  }
+};
+</script>
+<style></style>