diff --git a/src/routes/dataset/model-check/ModelItem.svelte b/src/routes/dataset/model-check/ModelItem.svelte new file mode 100644 index 0000000..f376cd1 --- /dev/null +++ b/src/routes/dataset/model-check/ModelItem.svelte @@ -0,0 +1,39 @@ + + +
+
+ {#if status === 'downloading' && progress !== undefined} + {progress}% + {:else if status === 'ok'} + + {:else if status === 'unexists'} + + {:else if status === 'error'} + + {/if} +
+ {@render children?.()} +