mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-24 06:20:11 +08:00
17 lines
550 B
TypeScript
17 lines
550 B
TypeScript
import TreeMap from './index.vue'
|
|
import Configuration from './config.vue'
|
|
import image from '@/assets/images/chart/charts/tree_map.png'
|
|
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
|
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
|
|
|
export const TreeMapConfig: ConfigType = {
|
|
key: 'VTreeMap',
|
|
title: '树形分布',
|
|
category: ChatCategoryEnum.MORE,
|
|
categoryName: ChatCategoryEnumName.MORE,
|
|
package: PackagesCategoryEnum.CHARTS,
|
|
node: TreeMap,
|
|
conNode: () => Configuration,
|
|
image: image
|
|
}
|