最近打开
{#if error !== null}
{error}
{:else if entries === null}
加载中…
{:else if entries.length === 0}
还没有访问记录 · 去文件库逛逛
{:else}
{#each entries as e (e.nodeId + "/" + e.filePath)}
onopen({ nodeId: e.nodeId, ...(e.filePath !== "" ? { filePath: e.filePath } : {}) })} >
{e.name}
{#if e.filePath !== ""}
{e.filePath}
{/if}
{fmt(e.openedAt)}
{/each}
{/if}