1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-28 14:32:26 +00:00
bramw_baserow/web-frontend/pages/app/index.vue
2019-08-26 19:41:00 +02:00

22 lines
319 B
Vue

<template>
<div>
<h1>Welcome {{ user }}</h1>
<p>
{{ groups }}
</p>
</div>
</template>
<script>
import { mapState } from 'vuex'
export default {
layout: 'app',
computed: {
...mapState({
user: state => state.auth.user,
groups: state => state.group.items
})
}
}
</script>