All checks were successful
frontend-action / build-image (push) Successful in 1m22s
34 lines
765 B
Vue
34 lines
765 B
Vue
<template lang="">
|
|
<div>
|
|
<div class="hearder-form-edit text-center pb-6 mt-2">
|
|
<v-img
|
|
class="mx-auto"
|
|
:aspect-ratio="1"
|
|
src="@/assets/logo-title.png"
|
|
width="200"
|
|
@click="$router.push('/')"
|
|
></v-img>
|
|
<div class="text-title txt-black">
|
|
ข้อมูลส่วนตัว
|
|
</div>
|
|
<v-icon icon="mdi-circle" color="white" class="mt-2"></v-icon>
|
|
</div>
|
|
<FormSteper/>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import FormSteper from './FormSteperEdit.vue';
|
|
export default {
|
|
components:{
|
|
FormSteper
|
|
}
|
|
};
|
|
</script>
|
|
<style>
|
|
.hearder-form-edit {
|
|
background-color: #B2C573;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
</style>
|