Files
freeplanet/src/views/user/profile/profile.ts
Paolo Arena 20cd0f2e52 - Nella Lavagna, cliccando sul nome dell'invitato, compaiono le sue informazioni sugli step rimasti, in dettaglio.
- 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.
2020-02-02 04:07:24 +01:00

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
}
}