mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 23:37:55 +00:00
9 lines
176 B
Vue
9 lines
176 B
Vue
<script>
|
|
export default {
|
|
fetch({ store, redirect }) {
|
|
const name = store.getters['auth/isAuthenticated'] ? 'dashboard' : 'login'
|
|
redirect({ name })
|
|
},
|
|
}
|
|
</script>
|