artdwn's picture
Upload folder using huggingface_hub
3a1d71c
raw
history blame contribute delete
326 Bytes
<script setup lang="ts">
import ImgSliComparePane from './ImgSliComparePane.vue';
import { FileNodeInfo } from '@/api/files'
defineProps<{
paneIdx: number,
tabIdx: number,
left: FileNodeInfo,
right: FileNodeInfo
}>()
</script>
<template>
<ImgSliComparePane :left="left" :right="right">
</ImgSliComparePane>
</template>