- Ogni utente puo' cosi scegliere di regalare un proprio invitato, cliccando sull'invitato, scrivendo l'username del destinatario e premendo il bottone 'Regala Invitato'. Al destinatario gli arriverà un messaggio sul Bot Telegram che indica che gli è stato regalato un'invitato.
26 lines
579 B
TypeScript
26 lines
579 B
TypeScript
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
|
|
|
|
get mythis() {
|
|
return this
|
|
}
|
|
|
|
get getpayment() {
|
|
return UserStore.state.my.profile.paymenttypes
|
|
}
|
|
get profile() {
|
|
return UserStore.state.my.profile
|
|
}
|
|
|
|
}
|