2024-06-19 15:43:58 +07:00
|
|
|
<script lang="ts" setup>
|
2024-06-26 17:03:39 +07:00
|
|
|
import { ref } from 'vue';
|
2024-06-19 15:43:58 +07:00
|
|
|
import QuatationForm from './QuatationForm.vue';
|
2024-06-26 17:03:39 +07:00
|
|
|
|
|
|
|
|
import FormDialog from 'src/components/FormDialog.vue';
|
|
|
|
|
import HistoryEditComponent from 'src/components/03_customer-management/HistoryEditComponent.vue';
|
|
|
|
|
|
|
|
|
|
const test = ref(true);
|
2024-06-19 15:43:58 +07:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2024-06-26 17:03:39 +07:00
|
|
|
<FormDialog no-footer no-address title="ประวัติการแก้ไข" v-model:modal="test">
|
|
|
|
|
<template #person>
|
|
|
|
|
<HistoryEditComponent />
|
|
|
|
|
</template>
|
|
|
|
|
</FormDialog>
|
|
|
|
|
|
|
|
|
|
<!-- <QuatationForm /> -->
|
2024-06-19 15:43:58 +07:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped></style>
|