2022-01-14 22:07:02 +08:00
|
|
|
import { PackagesCategoryEnum, PackagesType } from '@/packages/index.d'
|
|
|
|
import { ChartList } from '@/packages/components/Chart/index'
|
|
|
|
import { DecorateList } from '@/packages/components/Decorate/index'
|
2022-01-15 12:50:00 +08:00
|
|
|
import { InformationList } from '@/packages/components/Information/index'
|
|
|
|
import { TableList } from '@/packages/components/Tables/index'
|
2022-01-14 16:17:14 +08:00
|
|
|
|
|
|
|
// 所有图表
|
|
|
|
let packagesList: PackagesType = {
|
2022-01-14 22:07:02 +08:00
|
|
|
[PackagesCategoryEnum.CHARTS]: ChartList,
|
2022-01-15 12:50:00 +08:00
|
|
|
[PackagesCategoryEnum.INFORMATION]: InformationList,
|
|
|
|
[PackagesCategoryEnum.TABLES]: TableList,
|
|
|
|
[PackagesCategoryEnum.DECORATES]: DecorateList,
|
2022-01-14 16:17:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export { packagesList }
|