refactor: use alias

This commit is contained in:
Methapon2001 2024-08-09 15:06:41 +07:00
parent f9494dc845
commit be7a036b8d
31 changed files with 77 additions and 77 deletions

View file

@ -3,7 +3,7 @@ import { api } from 'src/boot/axios';
import axios from 'axios';
import { Pagination } from 'src/stores/types';
import { Pagination } from 'stores/types';
import {
ProductGroup,
@ -24,7 +24,7 @@ import {
import { computed, ref } from 'vue';
import useFlowStore from '../flow';
import useMyBranchStore from 'src/stores/my-branch';
import useMyBranchStore from 'stores/my-branch';
const useProductServiceStore = defineStore('api-product-service', () => {
const useMyBranch = useMyBranchStore();

View file

@ -1,5 +1,5 @@
import { Status } from '../types';
import { Pagination, UpdatedBy, CreatedBy } from 'src/stores/types';
import { Pagination, UpdatedBy, CreatedBy } from 'stores/types';
export type ServiceAndProduct =
| (Service & { type: 'service' })