 
 
 router.js 
 {
      path:"/index",
      name:"index",
      component:index,
      children:[
        {
          path:"/device/user",
          name:"user",
          component:user,
            children:[
             {
              path: "/device/deviceDisplay",
              name: "deviceDisplay",
              component: deviceDisplay
             }
           ]
        }
the grandchild component will not come out until I click on the sub-component in the diagram. How to set it to appear in the above picture style when clicking on the parent component?

