fix: 完成左侧列表的其余内容

This commit is contained in:
mtruning
2022-01-15 12:50:00 +08:00
parent ae71e13c6d
commit f6860c3fa6
70 changed files with 336 additions and 270 deletions
+5 -3
View File
@@ -1,13 +1,15 @@
import { PackagesCategoryEnum, PackagesType } from '@/packages/index.d'
import { ChartList } from '@/packages/components/Chart/index'
import { DecorateList } from '@/packages/components/Decorate/index'
import { InformationList } from '@/packages/components/Information/index'
import { TableList } from '@/packages/components/Tables/index'
// 所有图表
let packagesList: PackagesType = {
[PackagesCategoryEnum.CHARTS]: ChartList,
[PackagesCategoryEnum.TEXTS]: DecorateList,
[PackagesCategoryEnum.TABLES]: DecorateList,
[PackagesCategoryEnum.DECORATES]: DecorateList
[PackagesCategoryEnum.INFORMATION]: InformationList,
[PackagesCategoryEnum.TABLES]: TableList,
[PackagesCategoryEnum.DECORATES]: DecorateList,
}
export { packagesList }