fix: remove redundant aliases
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<script setup>
|
||||
import FileActions from "@/components/media/FileActions.vue";
|
||||
import FileActions from "~/components/media/FileActions.vue";
|
||||
|
||||
const props = defineProps({
|
||||
image: Object,
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { useStore } from "@/stores/index";
|
||||
import { useStore } from "~/stores/index";
|
||||
|
||||
export default {
|
||||
setup() {
|
||||
|
||||
@@ -188,8 +188,8 @@
|
||||
import { ref } from "vue";
|
||||
import { debounce } from "es-toolkit";
|
||||
import { useNuxtApp } from "#app";
|
||||
import FileUpload from "@/components/media/FileUpload.vue";
|
||||
import ImageCard from "@/components/media/ImageCard.vue";
|
||||
import FileUpload from "~/components/media/FileUpload.vue";
|
||||
import ImageCard from "~/components/media/ImageCard.vue";
|
||||
|
||||
// pass only projectId for project images, pass both for product images
|
||||
const props = defineProps({
|
||||
|
||||
Reference in New Issue
Block a user