mirror of
https://gitee.com/niucloud-team/niucloud.git
synced 2025-12-10 17:22:47 +00:00
6 lines
165 B
TypeScript
6 lines
165 B
TypeScript
export default defineNuxtRouteMiddleware((to, from) => {
|
|
if (!getToken()) {
|
|
useLogin().setLoginBack(to)
|
|
return navigateTo('/auth/login')
|
|
}
|
|
}) |