将i-lucide都改为lucide本地库

This commit is contained in:
2025-07-28 13:38:45 +08:00
parent 29a41504d0
commit d30e76c41a
52 changed files with 155 additions and 155 deletions

View File

@@ -25,7 +25,7 @@ const directoryNavigation = computed(() => {
return {
title: item.title,
path: item.path,
icon: (item.icon as string) || 'i-lucide-file-text',
icon: (item.icon as string) || 'lucide-file-text',
active: Boolean(item.active)
}
}
@@ -34,7 +34,7 @@ const directoryNavigation = computed(() => {
return {
title: item.title,
path: item.path,
icon: (item.icon as string) || 'i-lucide-folder',
icon: (item.icon as string) || 'lucide-folder',
active: Boolean(item.active),
// 不包含 children这样就不会展开显示子项
children: []