17 lines
428 B
JavaScript
17 lines
428 B
JavaScript
import LoginForm from '../login_form/login_form.vue'
|
|
import PostStatusForm from '../post_status_form/post_status_form.vue'
|
|
import UserCardContent from '../user_card_content/user_card_content.vue'
|
|
|
|
const UserPanel = {
|
|
props: [ 'activatePanel' ],
|
|
computed: {
|
|
user () { return this.$store.state.users.currentUser }
|
|
},
|
|
components: {
|
|
LoginForm,
|
|
PostStatusForm,
|
|
UserCardContent
|
|
}
|
|
}
|
|
|
|
export default UserPanel
|