refactor: use alias
This commit is contained in:
parent
f9494dc845
commit
be7a036b8d
31 changed files with 77 additions and 77 deletions
|
|
@ -1,22 +1,22 @@
|
|||
<script setup lang="ts">
|
||||
import { ref, onMounted, watch, computed } from 'vue';
|
||||
import useUtilsStore, { dialog } from 'src/stores/utils';
|
||||
import useUtilsStore, { dialog } from 'stores/utils';
|
||||
import { calculateAge } from 'src/utils/datetime';
|
||||
import { useQuasar, type QTableProps } from 'quasar';
|
||||
import { storeToRefs } from 'pinia';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import useFlowStore from 'src/stores/flow';
|
||||
import useFlowStore from 'stores/flow';
|
||||
import useUserStore from 'stores/user';
|
||||
import useBranchStore from 'src/stores/branch';
|
||||
import useBranchStore from 'stores/branch';
|
||||
|
||||
import {
|
||||
User,
|
||||
UserAttachmentCreate,
|
||||
UserCreate,
|
||||
UserTypeStats,
|
||||
} from 'src/stores/user/types';
|
||||
import { BranchUserStats } from 'src/stores/branch/types';
|
||||
import useAddressStore from 'src/stores/address';
|
||||
} from 'stores/user/types';
|
||||
import { BranchUserStats } from 'stores/branch/types';
|
||||
import useAddressStore from 'stores/address';
|
||||
import ButtonAddComponent from 'components/ButtonAddCompoent.vue';
|
||||
import PersonCard from 'components/shared/PersonCard.vue';
|
||||
import StatCardComponent from 'components/StatCardComponent.vue';
|
||||
|
|
@ -31,7 +31,7 @@ import InfoForm from 'components/02_personnel-management/InfoForm.vue';
|
|||
import NoData from 'components/NoData.vue';
|
||||
import ProfileUpload from 'components/ProfileUpload.vue';
|
||||
import PaginationComponent from 'components/PaginationComponent.vue';
|
||||
import useOptionStore from 'src/stores/options';
|
||||
import useOptionStore from 'stores/options';
|
||||
import ProfileBanner from 'components/ProfileBanner.vue';
|
||||
import SideMenu from 'components/SideMenu.vue';
|
||||
import ImageUploadDialog from 'components/ImageUploadDialog.vue';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue