1.根目录下新建middleware文件夹并新建文件unknownRoute.js,代码如下

/**
 *   未知路由重定向 到首页
 */
export default ({store, route, redirect}) => {
    if(!route.matched.length){
        redirect('/')
    }
}

  


2.根目录下配置文件nuxt.config.js,写入配置代码

export default {
   router: {
    middleware: 'unknownRoute'
  }
}

  

 

 posted on 2022-01-11 16:02  北梦木兮-  阅读(743)  评论(0编辑  收藏  举报