美文网首页
Vue3 Router任意页面重定向

Vue3 Router任意页面重定向

作者: 曾祥辉 | 来源:发表于2021-03-27 11:24 被阅读0次

    Vue2

    routes: [
            {
                path: '*',
                redirect: '/'
            }
        ]
    

    Vue3

    routes: [
            {
                path: '/:pathMatch(.*)*',
                redirect: '/'
            }
        ]
    

    相关文章

      网友评论

          本文标题:Vue3 Router任意页面重定向

          本文链接:https://www.haomeiwen.com/subject/lyehhltx.html