mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-06 05:40:09 +00:00
8 lines
176 B
Vue
8 lines
176 B
Vue
<script>
|
|
export default {
|
|
fetch({ store, redirect }) {
|
|
const name = store.getters['auth/isAuthenticated'] ? 'dashboard' : 'login'
|
|
redirect({ name })
|
|
},
|
|
}
|
|
</script>
|