fix(import): removed auto added weird .js extension

This commit is contained in:
Corentin Thomasset 2022-08-04 08:49:35 +02:00
parent cc717bc87e
commit fda0b0ca25
No known key found for this signature in database
GPG key ID: 3103EB5E79496F9C
2 changed files with 3 additions and 3 deletions

View file

@ -52,7 +52,7 @@
<script setup lang="ts">
import TextareaCopyable from '@/components/TextareaCopyable.vue';
import { useCopy } from '@/composable/copy';
import { useDownloadFileFromBase64 } from '@/composable/downloadBase64.js';
import { useDownloadFileFromBase64 } from '@/composable/downloadBase64';
import { computed, ref } from 'vue';
const width = ref(600);