mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-28 14:32:26 +00:00
22 lines
319 B
Vue
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>
|