mirror of
https://gitee.com/dromara/go-view.git
synced 2026-01-30 00:05:29 +08:00
17 lines
563 B
TypeScript
17 lines
563 B
TypeScript
import Variable from './index.vue'
|
|
import Configuration from './config.vue'
|
|
import image from '@/assets/images/chart/charts/water_variable.png'
|
|
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
|
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
|
|
|
export const VariableConfig: ConfigType = {
|
|
key: 'VVariable',
|
|
title: '折线面积图',
|
|
category: ChatCategoryEnum.MORE,
|
|
categoryName: ChatCategoryEnumName.MORE,
|
|
package: PackagesCategoryEnum.CHARTS,
|
|
node: Variable,
|
|
conNode: () => Configuration,
|
|
image: image
|
|
}
|