other components...

This commit is contained in:
Paolo Arena
2021-09-04 15:05:34 +02:00
parent 1c3df0fac1
commit fcc4f61f07
110 changed files with 4592 additions and 566 deletions

View File

@@ -0,0 +1,5 @@
.signin {
width: 100%;
margin: 0 auto;
max-width: 450px;
}

View File

@@ -0,0 +1,22 @@
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
}

View File

@@ -0,0 +1,16 @@
<template>
<div>
<form>
<div class="q-gutter-xs">
</div>
</form>
</div>
</template>
<script lang="ts" src="./CProfile.ts">
</script>
<style lang="scss" scoped>
@import './CProfile.scss';
</style>

View File

@@ -0,0 +1 @@
export {default as CProfile} from './CProfile.vue'