a
This commit is contained in:
@@ -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<{
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user