5 lines
124 B

export default function ({ store, redirect }) {
if (!store.getters['auth/isAuthenticated']) {
redirect('/auth')
}
}