Vue routing return problem

I went from / audit = > / auditlist
but from / auditlist $router.back (- 1) to the default home page. What"s wrong with it

?
     routes: [
        {
          path: "",
          component: Home,
          children: [
            {
              path: "/",
              component: Explorer,
              name: "Explorer"
            },
            {
              path: "/audit",
              component: Audit,
              name: "Audit",
            },
            {
              path: "/auditlist",
              component: AuditList,
              name: "AuditList"
            },
          ]
        },
        {
          path:"/login",
          component: Login,
          name: "Login",
        }
      ]
Oct.12,2021

how to execute / audit = = > / auditlist
replace


/ audit = = > / auditlist
you post this operation, as said upstairs, are you this.$router.replace ('/ auditlist')?


router.push (location, onComplete?, onAbort?)
router.replace (location, onComplete?, onAbort?)
router.go (n)
router.back ()
router.forward ()

back is free of parameters. It should be the home page
by default. The previous page should be router.go (- 1). That's what I use

.
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-1b335e8-2be85.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-1b335e8-2be85.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?