8 lines
166 B
JavaScript
8 lines
166 B
JavaScript
export default function guest(to, from, next) {
|
|
const token = localStorage.getItem("token")
|
|
if (token) {
|
|
next({ name: "Brankas" })
|
|
} else {
|
|
next()
|
|
}
|
|
} |