mirror of
https://gitee.com/dromara/go-view.git
synced 2025-05-16 08:04:04 +08:00
15 lines
465 B
TypeScript
15 lines
465 B
TypeScript
import PieCommon from './index.vue'
|
|
import image from '@/assets/images/chart/charts/pie.png'
|
|
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
|
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
|
|
|
export const PieCommonConfig: ConfigType = {
|
|
key: 'VPieCommon',
|
|
title: '饼图',
|
|
category: ChatCategoryEnum.PIE,
|
|
categoryName: ChatCategoryEnumName.PIE,
|
|
package: PackagesCategoryEnum.CHARTS,
|
|
node: PieCommon,
|
|
image
|
|
}
|