Skip to content

Commit 4d409de

Browse files
committed
[automated] Apply ESLint and Prettier fixes
1 parent 8fb9751 commit 4d409de

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/components/load3d/Load3D.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@
6363
</template>
6464

6565
<script setup lang="ts">
66-
import { type Ref, computed, onMounted, ref } from 'vue'
66+
import { computed, onMounted, ref } from 'vue'
67+
import type { Ref } from 'vue'
6768
6869
import Load3DControls from '@/components/load3d/Load3DControls.vue'
6970
import Load3DScene from '@/components/load3d/Load3DScene.vue'

src/composables/useLoad3d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { type Ref, nextTick, ref, toRaw, watch } from 'vue'
1+
import { nextTick, ref, toRaw, watch } from 'vue'
2+
import type { Ref } from 'vue'
23

34
import Load3d from '@/extensions/core/load3d/Load3d'
45
import Load3dUtils from '@/extensions/core/load3d/Load3dUtils'

0 commit comments

Comments
 (0)