style: 桶图标

This commit is contained in:
overtrue
2024-12-11 21:56:24 +08:00
parent d78190da93
commit c3d8e47d26
+1 -1
View File
@@ -44,7 +44,7 @@ const columns = [
dataIndex: 'name',
key: 'Name',
render: (row: { Name: string }) => {
return h(NuxtLink, { href: `/browser/${encodeURIComponent(row.Name)}` }, row.Name);
return h(NuxtLink, { href: `/browser/${encodeURIComponent(row.Name)}`, class: 'flex items-center gap-2' }, [icon('ri:archive-line'), row.Name]);
}
},
{ title: '创建时间', dataIndex: 'creationDate', key: 'CreationDate' },