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

@ -1,5 +1,5 @@
<script lang="ts" setup>
import { baseUrl } from 'src/stores/utils';
import { baseUrl } from 'stores/utils';
defineProps<{
inactive?: boolean;

View file

@ -1,9 +1,9 @@
<script setup lang="ts">
import { BankBook } from 'src/stores/branch/types';
import useOptionStore from 'src/stores/options';
import { selectFilterOptionRefMod } from 'src/stores/utils';
import { BankBook } from 'stores/branch/types';
import useOptionStore from 'stores/options';
import { selectFilterOptionRefMod } from 'stores/utils';
import { onMounted, ref, watch } from 'vue';
import { deleteItem } from 'src/stores/utils';
import { deleteItem } from 'stores/utils';
import { QSelect } from 'quasar';
import { AddButton, DeleteButton } from 'components/button';