- Chart Maps Nationality

- Username lowercase
- Statistics
- Telegram
This commit is contained in:
Paolo Arena
2020-01-27 15:09:11 +01:00
parent 415c431270
commit 3653b8309c
71 changed files with 1743 additions and 143 deletions

View File

@@ -0,0 +1,25 @@
import { Component, Mixins, Prop, Watch } from 'vue-property-decorator'
import MixinBase from '../../../mixins/mixin-base'
import { CMyFieldDb, CTitleBanner, CProfile, CStatus } from '@components'
import { UserStore } from '../../../store/Modules'
@Component({
components: { CProfile, CTitleBanner, CMyFieldDb, CStatus }
})
export default class Profile extends MixinBase {
public $v
public $q
public mythis() {
return this
}
get getpayment() {
return UserStore.state.my.profile.paymenttypes
}
get profile() {
return UserStore.state.my.profile
}
}