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
2 changed files with 3 additions and 3 deletions

View File

@@ -49,7 +49,7 @@
</template>
<script setup lang="ts">
import { useCopy } from '@/composable/copy.js';
import { useCopy } from '@/composable/copy';
import {
enc,
HmacMD5,
@@ -63,7 +63,7 @@ import {
lib,
} from 'crypto-js';
import { computed, ref } from 'vue';
import { convertHexToBin } from '../hash-text/hash-text.service.js';
import { convertHexToBin } from '../hash-text/hash-text.service';
const algos = {
MD5: HmacMD5,

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);