constantRouterMap.js 187 字节 原文件 审查 历史 永久链接 1 2 3 4 5 const Notfound = () => import('@/views/404') export default [ { path: '*', component: Notfound }, { path: '/', name: '总览', component: () => import('@/components/LandingPage') } ]