mirror of
https://github.com/ctwj/urldb.git
synced 2025-11-25 03:15:04 +08:00
11 lines
277 B
TypeScript
11 lines
277 B
TypeScript
export default defineNuxtRouteMiddleware((to, from) => {
|
|
const userStore = useUserStore()
|
|
|
|
// 初始化用户状态
|
|
userStore.initAuth()
|
|
|
|
// 如果用户未登录,重定向到登录页面
|
|
if (!userStore.isAuthenticated) {
|
|
return navigateTo('/login')
|
|
}
|
|
})
|