1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-09 23:27:51 +00:00
bramw_baserow/web-frontend/pages/app/index.vue

18 lines
241 B
Vue

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