This commit is contained in:
feie9456 2025-09-09 09:54:50 +08:00
parent 6aacd3208d
commit 00b52f5092

View File

@ -1,5 +1,5 @@
<script lang="ts" setup>
import { ref, computed, useTemplateRef, onMounted } from 'vue'
import { ref, computed, useTemplateRef, onMounted, type CSSProperties } from 'vue'
import { extractFrameFromVideo } from './vfex';
const frames = ref<VideoFrame[]>([]);
@ -38,7 +38,6 @@ async function handleFileChange(event: Event) {
}
}
const selectedIndex = ref(0);
</script>