use absolute path for all routes

This commit is contained in:
RockYang
2023-09-07 10:27:18 +08:00
parent aada15fc41
commit 9bd83f3acf
9 changed files with 27 additions and 19 deletions

View File

@@ -17,7 +17,7 @@ checkSession().then(() => {
router.push("/chat")
}
}).catch(() => {
router.push("login")
router.push("/login")
})
</script>