How to set up level 3 routing in vue

it is usually a level 2 route, and there is no problem, but a new level 3 route discovery page cannot be opened

{
    //
    path:"/questionnaire",
    component:view,
    children:[
        {
            //
            path:"/",
            component: () => import("@/pages/questionnaire/index"),
        },                
        {
            //
            path:"add",
            component: () => import("@/pages/questionnaire/add"),
        },                
        {
            //
            path:"preview",
            component: () => import("@/pages/questionnaire/preview"),
        },            
        {
            //
            path:"people",
            component: () => import("@/pages/questionnaire/people"),
        },
        {
            //
            path:"/template",
            component:view,
            chidlren:[
                {
                    //
                    path:"/",
                    component: () => import("@/pages/questionnaire/template"),
                },
                {
                    //
                    path:"create",
                    component: () => import("@/pages/questionnaire/created"),
                }
            ]
        }    
    ]
}

then open the path page that is blank

clipboard.png


change it

path:'template',
            component:view,
            chidlren:[
                {
                    //
                    path:'',
                    component: () => import("@/pages/questionnaire/template"),
                },
                {
                    //
                    path:'create',
                    component: () => import("@/pages/questionnaire/created"),
                }
            ]
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b39a3a-2b928.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b39a3a-2b928.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?