«
vue3 axios中使用router进行跳转

时间:2024-12-10    作者:范文泉    分类: vue


在axios文件中导入router,console输出为undefined
(js/ts中无法使用vue声明的文件/不能使用useRouter ,useRoute,他们需要在setup中调用执行后才能用)

解决方法(推荐)
导入项目中已配置好的router

import router from '@/router'

其他方法

window.location.href = "/login"