refactor(routes): quotation

This commit is contained in:
Methapon2001 2024-07-25 09:27:58 +07:00
parent 6215338e58
commit fac28cfc67
5 changed files with 5 additions and 5 deletions

View file

@ -0,0 +1,21 @@
<script lang="ts" setup>
import { ref } from 'vue';
import QuatationForm from './QuatationForm.vue';
import FormDialog from 'components/FormDialog.vue';
import HistoryEditComponent from 'components/03_customer-management/HistoryEditComponent.vue';
const test = ref(true);
</script>
<template>
<FormDialog no-footer no-address title="ประวัติการแก้ไข" v-model:modal="test">
<template #person>
<HistoryEditComponent />
</template>
</FormDialog>
<!-- <QuatationForm /> -->
</template>
<style scoped></style>