other components...
This commit is contained in:
5
src/components/CProfile/CProfile.scss
Executable file
5
src/components/CProfile/CProfile.scss
Executable file
@@ -0,0 +1,5 @@
|
||||
.signin {
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
max-width: 450px;
|
||||
}
|
||||
22
src/components/CProfile/CProfile.ts
Executable file
22
src/components/CProfile/CProfile.ts
Executable 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
|
||||
|
||||
|
||||
}
|
||||
16
src/components/CProfile/CProfile.vue
Executable file
16
src/components/CProfile/CProfile.vue
Executable 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>
|
||||
1
src/components/CProfile/index.ts
Executable file
1
src/components/CProfile/index.ts
Executable file
@@ -0,0 +1 @@
|
||||
export {default as CProfile} from './CProfile.vue'
|
||||
Reference in New Issue
Block a user