mirror of
https://gitee.com/dromara/go-view.git
synced 2026-05-20 06:48:09 +08:00
12 lines
374 B
TypeScript
12 lines
374 B
TypeScript
import { PackagesCategoryEnum, PackagesType } from '@/packages/index.d'
|
|
import { ChartList } from '@/packages/components/Chart/index'
|
|
import { DecorateList } from '@/packages/components/Decorate/index'
|
|
|
|
// 所有图表
|
|
let packagesList: PackagesType = {
|
|
[PackagesCategoryEnum.CHARTS]: ChartList,
|
|
[PackagesCategoryEnum.DECORATES]: DecorateList
|
|
}
|
|
|
|
export { packagesList }
|