feat: 增加图标边栏选项卡

This commit is contained in:
tnt group
2023-05-18 19:44:27 +08:00
parent aee8c6bf9e
commit 2fe63c613d
4 changed files with 16 additions and 4 deletions
+2
View File
@@ -3,6 +3,7 @@ import { DecorateList } from '@/packages/components/Decorates/index'
import { InformationList } from '@/packages/components/Informations/index'
import { TableList } from '@/packages/components/Tables/index'
import { PhotoList } from '@/packages/components/Photos/index'
import { IconList } from '@/packages/components/Icons/index'
import { PackagesCategoryEnum, PackagesType, ConfigType, FetchComFlagType } from '@/packages/index.d'
const configModules: Record<string, { default: string }> = import.meta.glob('./components/**/config.vue', {
@@ -21,6 +22,7 @@ export let packagesList: PackagesType = {
[PackagesCategoryEnum.INFORMATIONS]: InformationList,
[PackagesCategoryEnum.TABLES]: TableList,
[PackagesCategoryEnum.PHOTOS]: PhotoList,
[PackagesCategoryEnum.ICONS]: IconList,
[PackagesCategoryEnum.DECORATES]: DecorateList
}