Vue-router does not jump

Click the button to jump: the current page path is / order

    toOrderDetail(item){
        this.SAVE_ORDER(item);
        this.$router.push("/order/detail");
        console.log(2222)
    }

routing code:

            //
            {
                path:"/order",
                component:order,
                children:[{
                    path:"detail",    //
                    component:detail
                }]
            },

File directory:

result: the address changes after clicking, but the page does not jump

Dec.26,2021

{
  path: '/order',
  component: order,
  children: [{
    path: '/order/detail',    //
    component: detail,
  }],
},
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-1b4148f-2bdcb.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-1b4148f-2bdcb.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?