This commit is contained in:
guochunsi
2026-01-29 17:51:30 +08:00
parent 6ae091abff
commit 682af86d80
16 changed files with 48 additions and 217 deletions

View File

@@ -13,9 +13,8 @@
</template>
<script setup lang="ts">
import { ref } from 'vue'
// @ts-ignore - Vue 3 script setup component
import multiUpload from './multiUpload.vue'
import { ref, defineAsyncComponent } from 'vue';
const multiUpload = defineAsyncComponent(() => import('./multiUpload.vue'))
// Props
const props = defineProps<{

View File

@@ -47,8 +47,8 @@
</template>
<script setup lang="ts" name="showEvidence">
import { ref, reactive, nextTick } from 'vue';
import authImg from '/@/components/tools/auth-img.vue';
import { ref, reactive, nextTick, defineAsyncComponent } from 'vue';
const authImg = defineAsyncComponent(() => import('/@/components/tools/auth-img.vue'))
interface ImageItem {
url: string;

View File

@@ -5,8 +5,8 @@
</template>
<script setup lang="ts">
import { ref, nextTick } from 'vue'
import authImg from '/@/components/tools/auth-img.vue'
import { ref, nextTick, defineAsyncComponent } from 'vue';
const authImg = defineAsyncComponent(() => import('/@/components/tools/auth-img.vue'))
interface ImageItem {
title: string