vue设置404页面
程序员文章站
2022-06-03 16:02:30
...
在router/index.js中添加
{
path: "/404",
name: "notFound",
component: notFound
}, {
path: "*", // 此处需特别注意置于最底部
redirect: "/404"
}
转自:https://blog.csdn.net/przlovecsdn/article/details/81509843