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

.
Menu