删掉部分多于代码,添加404页面,添加normalize.css
This commit is contained in:
		@@ -1,4 +1,4 @@
 | 
			
		||||
import { createRouter, createWebHashHistory } from 'vue-router'
 | 
			
		||||
import { createRouter, createWebHistory } from 'vue-router'
 | 
			
		||||
import HomeView from '../views/HomeView.vue'
 | 
			
		||||
 | 
			
		||||
const routes = [
 | 
			
		||||
@@ -14,11 +14,17 @@ const routes = [
 | 
			
		||||
    // this generates a separate chunk (about.[hash].js) for this route
 | 
			
		||||
    // which is lazy-loaded when the route is visited.
 | 
			
		||||
    component: () => import(/* webpackChunkName: "about" */ '../views/AboutView.vue')
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    path: '/:catchAll(.*)',
 | 
			
		||||
    name: 'Not Found',
 | 
			
		||||
    component: () => import('../views/NotFound.vue')
 | 
			
		||||
  }
 | 
			
		||||
]
 | 
			
		||||
 | 
			
		||||
const router = createRouter({
 | 
			
		||||
  history: createWebHashHistory(),
 | 
			
		||||
  mode: 'abstract',
 | 
			
		||||
  history: createWebHistory(), // createWebHashHistory(),
 | 
			
		||||
  routes
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user