fixup! refactor: use alias

This commit is contained in:
Methapon2001 2024-08-09 15:08:25 +07:00
parent fb42744a33
commit 622b25b900
2 changed files with 7 additions and 7 deletions

View file

@ -49,7 +49,7 @@ import ImageUploadDialog from 'components/ImageUploadDialog.vue';
import FormEmployeeHealthCheck from 'components/03_customer-management/FormEmployeeHealthCheck.vue';
import FormEmployeeWorkHistory from 'components/03_customer-management/FormEmployeeWorkHistory.vue';
import FormEmployeeOther from 'components/03_customer-management/FormEmployeeOther.vue';
import useOptionStore from 'src/stores/options';
import useOptionStore from 'stores/options';
import { DialogContainer, DialogHeader } from 'components/dialog';
const { t, locale } = useI18n();

View file

@ -3,13 +3,13 @@ import { defineStore } from 'pinia';
import {
CustomerBranchCreate,
CustomerCreate,
} from 'src/stores/customer/types';
import { Employee, EmployeeCreate } from 'src/stores/employee/types';
} from 'stores/customer/types';
import { Employee, EmployeeCreate } from 'stores/employee/types';
import useMyBranch from 'src/stores/my-branch';
import useCustomerStore from 'src/stores/customer';
import useEmployeeStore from 'src/stores/employee';
import useFlowStore from 'src/stores/flow';
import useMyBranch from 'stores/my-branch';
import useCustomerStore from 'stores/customer';
import useEmployeeStore from 'stores/employee';
import useFlowStore from 'stores/flow';
export const useCustomerForm = defineStore('form-customer', () => {
const apiBaseUrl = import.meta.env.VITE_API_BASE_URL;