feat: add account state

This commit is contained in:
chenghx
2018-08-13 11:38:29 +08:00
parent f2a11aa058
commit fef089a8b5
7 changed files with 45 additions and 31 deletions

View File

@@ -36,25 +36,9 @@ const AMenuDivider = AMenu.Divider
export default {
name: 'HeaderAvatar',
components: {AMenu, AMenuItem, AMenuDivider, AIcon, AAvatar, ADropdown},
data () {
return {
currUser: {
name: 'XXXXX',
avatar: ''
}
}
},
mounted () {
this.currentUser()
},
methods: {
currentUser () {
this.$axios({
method: 'get',
url: '/user/current'
}).then(res => {
this.currUser = res.data
})
computed: {
currUser () {
return this.$store.state.account.user
}
}
}