refactor: file name

This commit is contained in:
Methapon Metanipat 2024-10-30 08:59:20 +07:00
parent f4d225985a
commit c43a909fcc
3 changed files with 4 additions and 3 deletions

View file

@ -35,6 +35,7 @@ export default configure((ctx) => {
devServer: { devServer: {
host: '0.0.0.0', host: '0.0.0.0',
open: false, open: false,
port: 5173,
}, },
framework: { framework: {
config: {}, config: {},

View file

@ -59,7 +59,7 @@ import {
CloseButton, CloseButton,
MainButton, MainButton,
} from 'components/button'; } from 'components/button';
import ProductServiceForm from './ProductServiceForm.vue'; import QuotationFormProductSelect from './QuotationFormProductSelect.vue';
import QuotationFormInfo from './QuotationFormInfo.vue'; import QuotationFormInfo from './QuotationFormInfo.vue';
import ProfileBanner from 'components/ProfileBanner.vue'; import ProfileBanner from 'components/ProfileBanner.vue';
import DialogForm from 'components/DialogForm.vue'; import DialogForm from 'components/DialogForm.vue';
@ -1581,7 +1581,7 @@ const view = ref<View>(View.Quotation);
<!-- add product service --> <!-- add product service -->
<ProductServiceForm <QuotationFormProductSelect
v-model="pageState.productServiceModal" v-model="pageState.productServiceModal"
v-model:nodes="productServiceNodes" v-model:nodes="productServiceNodes"
v-model:product-group="productGroup" v-model:product-group="productGroup"
@ -1606,7 +1606,7 @@ const view = ref<View>(View.Quotation);
} }
} }
" "
></ProductServiceForm> ></QuotationFormProductSelect>
</div> </div>
<!-- NOTE: START - Employee Add Form --> <!-- NOTE: START - Employee Add Form -->