7 lines
No EOL
186 B
TypeScript
7 lines
No EOL
186 B
TypeScript
export default defineNuxtRouteMiddleware((to, from) => {
|
|
const authStore = useAuthStore();
|
|
authStore.checkAuth();
|
|
if (!authStore.isAdmin) {
|
|
return navigateTo('/login');
|
|
}
|
|
}); |