13 lines
240 B
JavaScript
13 lines
240 B
JavaScript
|
import store from '~/store'
|
||
|
import Cookies from 'js-cookie'
|
||
|
|
||
|
export default async (to, from, next) => {
|
||
|
if (!store.getters['auth/check']) {
|
||
|
Cookies.set('intended_url', to.path)
|
||
|
|
||
|
next({ name: 'login' })
|
||
|
} else {
|
||
|
next()
|
||
|
}
|
||
|
}
|