在项目中的 router路由配置文件夹中
index.js文件配置:
javascript
children: [
// 配置 无路由404页
{
path: "/:pathMatch(.*)*",
redirect: "/",
},
{
path: "/:catchAll(.*)",
name: "NotFound",
component: () => import("@/components/notFound.vue"),
},
]
需要在components文件夹下创建notFound.vue 文件
在里面可以自定义样式 即可!