【Vue】匹配404错误

≡放荡痞女 提交于 2020-03-03 11:46:53

在路由规则中,*代表的是任意字符。所以只要在路由的最后添加一个*路由,那么以后没有匹配到的url都会被导入到这个视图中。示例代码如下:

let UserProfile = {template:"<h1>个人中心:{{$route.params.userid}}</h1>"};
let NotFound = {template: "<h1>您找的页面已经到火星啦!</h1>"}
var routes = [
    {path: "/user/:userid",component: UserProfile},
    {path: "*",component: NotFound},
]
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!