mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
13 lines
351 B
TypeScript
13 lines
351 B
TypeScript
import BarCommon from './index.vue'
|
|
import image from '@/assets/images/chart/charts/bar_x.png'
|
|
import { ConfigType } from '@/packages/index.d'
|
|
import { ChatCategoryEnum } from '../../index.d'
|
|
|
|
export const BarCommonConfig: ConfigType = {
|
|
key: 'VBarCommon',
|
|
title: '柱状图',
|
|
category: ChatCategoryEnum.BAR,
|
|
node: BarCommon,
|
|
image: image
|
|
}
|