refactor(routes): quotation
This commit is contained in:
parent
6215338e58
commit
fac28cfc67
5 changed files with 5 additions and 5 deletions
21
src/pages/05_quotation/MainPage.vue
Normal file
21
src/pages/05_quotation/MainPage.vue
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue