{
path: '/:catchAll(.*)',
name: '404',
meta: {
title: '找不到页面',
},
component: () =>
import(/* webpackChunkName: "404" */ '@/views/Other/404.vue'),
},
核心代码就是这一行
path: '/:catchAll(.*)',
{
path: '/:catchAll(.*)',
name: '404',
meta: {
title: '找不到页面',
},
component: () =>
import(/* webpackChunkName: "404" */ '@/views/Other/404.vue'),
},
核心代码就是这一行
path: '/:catchAll(.*)',