2016-10-27 09:02:28 -07:00
|
|
|
import LoginForm from '../login_form/login_form.vue'
|
2016-10-30 08:53:58 -07:00
|
|
|
import PostStatusForm from '../post_status_form/post_status_form.vue'
|
2016-11-30 13:27:19 -08:00
|
|
|
import UserCardContent from '../user_card_content/user_card_content.vue'
|
2016-10-27 09:02:28 -07:00
|
|
|
|
|
|
|
const UserPanel = {
|
2018-12-04 08:24:31 -08:00
|
|
|
props: [ 'activatePanel' ],
|
2016-10-27 09:02:28 -07:00
|
|
|
computed: {
|
2016-11-30 13:27:19 -08:00
|
|
|
user () { return this.$store.state.users.currentUser }
|
2016-10-27 09:02:28 -07:00
|
|
|
},
|
|
|
|
components: {
|
2016-10-30 08:53:58 -07:00
|
|
|
LoginForm,
|
2016-11-30 13:27:19 -08:00
|
|
|
PostStatusForm,
|
|
|
|
UserCardContent
|
2016-10-27 09:02:28 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default UserPanel
|