Vue 三级路由/about/contact/phone无效,请问如何修改?

发布于 2022-09-11 19:46:52 字数 1346 浏览 21 评论 0

这是我的路由文件,设置了三级路由,无法正确跳转

import Vue from "vue";
import VueRouter from "vue-router";

// 引入组件
import home from "./modules/home.vue";
import about from "./modules/about.vue";
import Phone from "./modules/Phone.vue";
import Contact from "./modules/Contact.vue";

// 要告诉 vue 使用 vueRouter
Vue.use(VueRouter);

const routes = [
    {
        path:"/home",
        component: home,
        children:[
            {
                path:'/home/contact',
                name:'contactLink',
                component:Contact
            }
        ]
    },
    {
        path: "/about",
        component: about,
        children:[
            //表示about页面中默认跳转到/about/contact 这个路由页面下。
            {
                path:'/about/contact',
                name:'contactLink',
                // redirect:'/personName',
                component: Contact,
                children:[
                    // 在/about/contact页面中默认展现三级路由personName 的内容。
                    {
                        path:'/phone',
                        name:"phoneNumber",
                        component: Phone
                    }
                ]
            }
        ]
    },
    // 重定向
    {
        path: '/',
        redirect: '/home'
    }
];

let router =  new VueRouter({
    routes,
    mode: "history"
});

export default router;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆离笙 2022-09-18 19:46:52
{
        path: "/about",
        component: about,
        children:[
            //表示about页面中默认跳转到/about/contact 这个路由页面下。
            {
                path:'contact',
                name:'contactLink',
                // redirect:'/personName',
                component: Contact,
                children:[
                    // 在/about/contact页面中默认展现三级路由personName 的内容。
                    {
                        path:'phone',
                        name:"phoneNumber",
                        component: Phone
                    }
                ]
            }
        ]
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文