印度做爰免费网站视频,淮南品牌型网站建设,wordpress 忽略更新,新风向网站建设一、情景说明
在初学Vue3的项目中#xff0c;我们配置了路由后#xff0c;页面会告警 如下图#xff1a; 具体含义就是#xff0c;没有配置/路径对应的路由组件
二、解决
关键配置#xff1a;redirect
const router createRouter({history:createWebHis…一、情景说明
在初学Vue3的项目中我们配置了路由后页面会告警 如下图 具体含义就是没有配置/路径对应的路由组件
二、解决
关键配置redirect
const router createRouter({history:createWebHistory(), //路由器的工作模式稍后讲解routes:[ //一个一个的路由规则{name:zhuye,path:/home,component:Home},{name:xinwen,path:/news,component:News,children:[{name:xiang,path:detail,component:Detail,props(route){return route.query}}]},{name:guanyu,path:/about,component:About},{path:/,redirect:/home}]
})这样一访问页面就自动重定向到/home路径对应的页面