Browse Source

add menu test of the home.vue

DYaiu 4 years ago
parent
commit
20b176e22c
2 changed files with 15 additions and 2 deletions
  1. 4 2
      src/router/index.js
  2. 11 0
      src/views/home/home.vue

+ 4 - 2
src/router/index.js

@@ -5,12 +5,14 @@ Vue.use(Router)
 
 export const constantRoutes = [
     {
-        path: '/',
+        path: '/home',
         name: 'home',
-        component: () => import('@/components/HelloWorld')
+        title: '首页',
+        component: () => import('@/views/home/home')
     }, {
         path: '/work',
         name: 'work',
+        title: '作业',
         component: () => import('@/views/work/work')
     }
 ]

+ 11 - 0
src/views/home/home.vue

@@ -0,0 +1,11 @@
+<template>
+  <div class="work">
+    <h1>HelloWorld</h1>
+  </div>
+</template>
+
+<script>
+export default {
+  name: "HelloWorld"
+};
+</script>