10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
export default function auth(to, from, next) {
|
|
const token = localStorage.getItem("token")
|
|
|
|
if (!token) {
|
|
next({ name: "Login" })
|
|
} else {
|
|
next()
|
|
}
|
|
}
|