Add UserPanel.

This commit is contained in:
Roger Braun 2016-10-27 18:02:28 +02:00
parent 7ba40ff7e2
commit a7ea9c5195
2 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,18 @@
import LoginForm from '../login_form/login_form.vue'
const UserPanel = {
computed: {
user () { return this.$store.state.users.currentUser },
style () {
return {
color: `#${this.user.profile_link_color}`,
'background-image': `url(${this.user.cover_photo})`
}
}
},
components: {
LoginForm
}
}
export default UserPanel