mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
18 lines
582 B
TypeScript
18 lines
582 B
TypeScript
import BarCommon from './index.vue'
|
|
import Configuration from './config.vue'
|
|
import image from '@/assets/images/chart/charts/bar_x.png'
|
|
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
|
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
|
|
|
export const BarCommonConfig: ConfigType = {
|
|
key: 'VBarCommon',
|
|
conKey: 'VCBarCommon',
|
|
title: '柱状图',
|
|
category: ChatCategoryEnum.BAR,
|
|
categoryName: ChatCategoryEnumName.BAR,
|
|
package: PackagesCategoryEnum.CHARTS,
|
|
node: () => BarCommon,
|
|
conNode: () => Configuration,
|
|
image: image,
|
|
}
|