1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-21 23:37:55 +00:00
bramw_baserow/web-frontend/modules/core/pages/index.vue
2020-06-22 21:22:16 +02:00

9 lines
176 B
Vue

<script>
export default {
fetch({ store, redirect }) {
const name = store.getters['auth/isAuthenticated'] ? 'dashboard' : 'login'
redirect({ name })
},
}
</script>