Files
sorvor-front/src/components/edit/FormMainEdit.vue
Jarinya 5fc473780c
All checks were successful
frontend-action / build-image (push) Successful in 1m22s
แก้ไข UI / UX ทำ function search ใหม่ ตามบรีฟพี่อาร์ม
2024-04-25 19:11:29 +07:00

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>