From 72e046fd6defe2f78540e2c768b516bb3f96660a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E8=BE=89?= Date: Fri, 8 Nov 2024 23:30:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/components/fileSelector/fileItem.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/web/src/components/fileSelector/fileItem.vue b/web/src/components/fileSelector/fileItem.vue index fc75d89..5493770 100644 --- a/web/src/components/fileSelector/fileItem.vue +++ b/web/src/components/fileSelector/fileItem.vue @@ -10,9 +10,7 @@ import { ref, defineProps, PropType, watch, onMounted, h } from 'vue'; const props = defineProps({ fileData: { type: Object as PropType, required: true }, }); -const _OtherFileComponent = defineComponent({ - template: '' -}) +const _OtherFileComponent = defineComponent({ template: '' }); const FileTypes = [ { tag: 'img', attr: { src: props.fileData.url, draggable: false } }, { tag: 'video', attr: { src: props.fileData.url, controls: false, autoplay: true, muted: true, loop: true } },