哈希模式:带#(vue常用)
history模式:不带#(react常用)--主要是为了好看
404
main.js
import NotFound from '@/components/NotFound.vue'
{ path: '*', component: NotFound }//最下面写
NotFound.vue
404NotFound
哈希模式:带#(vue常用)
history模式:不带#(react常用)--主要是为了好看
main.js
import NotFound from '@/components/NotFound.vue'
{ path: '*', component: NotFound }//最下面写
NotFound.vue
404NotFound