Files
newfreeplanet_OLD/src/components/CProfile/CProfile.ts

23 lines
489 B
TypeScript
Raw Normal View History

2021-09-04 15:05:34 +02:00
import Vue from 'vue'
import { GlobalStore } from '@store'
import { UserStore } from '../../store/Modules'
import { Component, Prop, Watch } from 'vue-property-decorator'
import { toolsext } from '@src/store/Modules/toolsext'
import { validationMixin } from 'vuelidate'
import MixinBase from '../../mixins/mixin-base'
@Component({
name: 'CProfile',
mixins: [validationMixin],
components: { }
})
export default class CProfile extends MixinBase {
public $v
public $t: any
}