mirror of
https://github.com/fergalmoran/OpnForm.git
synced 2026-02-02 13:55:04 +00:00
10 lines
158 B
JavaScript
Vendored
10 lines
158 B
JavaScript
Vendored
import store from '~/store'
|
|
|
|
export default (to, from, next) => {
|
|
if (store.getters['auth/check']) {
|
|
next({ name: 'home' })
|
|
} else {
|
|
next()
|
|
}
|
|
}
|