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

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

View file

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