mirror of
https://gitee.com/dromara/go-view.git
synced 2025-05-12 14:11:35 +08:00
13 lines
328 B
TypeScript
13 lines
328 B
TypeScript
import node from './index.vue'
|
|
import image from '@/assets/images/chart/pie.png'
|
|
import { ConfigType } from '@/packages/index.d'
|
|
import { ChatCategoryEnum } from '../../index.d'
|
|
|
|
export const pieCommonConfig: ConfigType = {
|
|
key: 'PieCommon',
|
|
title: '饼图',
|
|
category: ChatCategoryEnum.PIE,
|
|
node: node,
|
|
image: image
|
|
}
|