mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-10 07:37:30 +00:00
18 lines
255 B
Vue
18 lines
255 B
Vue
<template>
|
|
<div>
|
|
<h1>Welcome {{ user }}</h1>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from 'vuex'
|
|
|
|
export default {
|
|
middleware: 'authenticated',
|
|
computed: {
|
|
...mapState({
|
|
user: state => state.auth.user
|
|
})
|
|
}
|
|
}
|
|
</script>
|