fix: remove redundant aliases
This commit is contained in:
@@ -199,7 +199,7 @@
|
||||
import InputPhone from "~/components/common/InputPhone";
|
||||
import InputEmail from "~/components/common/InputEmail";
|
||||
import SearchBox from "~/components/SearchBox";
|
||||
import { useStore } from "@/stores/index";
|
||||
import { useStore } from "~/stores/index";
|
||||
var props = defineProps({
|
||||
pagename: String,
|
||||
row: Object,
|
||||
|
||||
@@ -73,8 +73,8 @@ import { useNuxtApp } from "#app";
|
||||
import CustomerForm from "~/components/customer/CustomerForm.vue";
|
||||
import CustomerView from "~/components/customer/CustomerView.vue";
|
||||
import Modal from "~/components/Modal.vue";
|
||||
import { useStore } from "@/stores/index";
|
||||
import ImageGallery from "@/components/media/ImageGallery.vue";
|
||||
import { useStore } from "~/stores/index";
|
||||
import ImageGallery from "~/components/media/ImageGallery.vue";
|
||||
const nuxtApp = useNuxtApp();
|
||||
const { $dialog } = nuxtApp;
|
||||
|
||||
|
||||
@@ -394,11 +394,11 @@
|
||||
<script setup>
|
||||
import { ref, computed, onMounted, watch } from "vue";
|
||||
import { useNuxtApp } from "#app";
|
||||
import InputPhone from "@/components/common/InputPhone";
|
||||
import InputEmail from "@/components/common/InputEmail";
|
||||
import SearchBox from "@/components/SearchBox";
|
||||
import Datepicker from "@/components/datepicker/Datepicker";
|
||||
import { useStore } from "@/stores/index";
|
||||
import InputPhone from "~/components/common/InputPhone";
|
||||
import InputEmail from "~/components/common/InputEmail";
|
||||
import SearchBox from "~/components/SearchBox";
|
||||
import Datepicker from "~/components/datepicker/Datepicker";
|
||||
import { useStore } from "~/stores/index";
|
||||
import { isEqual, pick } from "es-toolkit";
|
||||
|
||||
const emit = defineEmits(["close", "update", "modalevent"]);
|
||||
|
||||
@@ -96,8 +96,8 @@
|
||||
|
||||
<script setup>
|
||||
import { ref, computed } from "vue";
|
||||
import InputPhone from "@/components/common/InputPhone.vue";
|
||||
import InputEmail from "@/components/common/InputEmail.vue";
|
||||
import InputPhone from "~/components/common/InputPhone.vue";
|
||||
import InputEmail from "~/components/common/InputEmail.vue";
|
||||
import { useStore } from "~/stores/index";
|
||||
import { isNotNil, pickBy } from "es-toolkit";
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
|
||||
<script setup>
|
||||
import { computed } from "vue";
|
||||
import { useStore } from "@/stores/index";
|
||||
import { useStore } from "~/stores/index";
|
||||
|
||||
const store = useStore();
|
||||
const lang = computed(() => store.lang);
|
||||
|
||||
@@ -296,7 +296,7 @@
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { useStore } from "@/stores/index";
|
||||
import { useStore } from "~/stores/index";
|
||||
export default {
|
||||
setup() {
|
||||
const store = useStore();
|
||||
|
||||
Reference in New Issue
Block a user