2020-01-27 15:09:11 +01:00
|
|
|
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
|
|
|
|
|
|
2020-02-02 04:07:24 +01:00
|
|
|
get mythis() {
|
2020-01-27 15:09:11 +01:00
|
|
|
return this
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
get getpayment() {
|
|
|
|
|
return UserStore.state.my.profile.paymenttypes
|
|
|
|
|
}
|
|
|
|
|
get profile() {
|
|
|
|
|
return UserStore.state.my.profile
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|