@@ -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')
}
]
@@ -0,0 +1,11 @@
+<template>
+ <div class="work">
+ <h1>HelloWorld</h1>
+ </div>
+</template>
+
+<script>
+export default {
+ name: "HelloWorld"
+};
+</script>