pleroma-fe/src/components/user_panel/user_panel.js

21 lines
460 B
JavaScript
Raw Normal View History

2016-10-27 18:02:28 +02:00
import LoginForm from '../login_form/login_form.vue'
2016-10-30 16:53:58 +01:00
import PostStatusForm from '../post_status_form/post_status_form.vue'
2016-10-27 18:02:28 +02:00
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: {
2016-10-30 16:53:58 +01:00
LoginForm,
PostStatusForm
2016-10-27 18:02:28 +02:00
}
}
export default UserPanel