vue在配置子路由的路径时,可不可以不带上父路由的路径?

vue在配置路由的时候如下:

{
    path: "/app",
    name: "app",
    component: welcome,
    redirect: "app/first",
    children: [
      {
        path: "first",
        name: "first",
        component: first,
        redirect:"first/index",
        children:[
          {
            path: "index",
            name: "index",
            component: index       
          }
        ]
      }
    ]
 }

这样在访问路径的时候,想要访问index。路径必须是app/first/index.
有没有办法可以使得访问first的子路由index时,不带上父路由first的路径,即通过app/index即可访问index页面。前提是,不允许改变first和index的父子关系


万千封印
浏览 2731回答 1
1回答

子衿沉夜

可以试试别名 alias,传送门
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Vue.js