mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
16 lines
512 B
TypeScript
16 lines
512 B
TypeScript
import image from '@/assets/images/chart/informations/photo.png'
|
|
import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
|
|
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
|
|
|
|
export const ImageConfig: ConfigType = {
|
|
key: 'Image',
|
|
chartKey: 'VImage',
|
|
conKey: 'VCImage',
|
|
title: '图片',
|
|
category: ChatCategoryEnum.MORE,
|
|
categoryName: ChatCategoryEnumName.MORE,
|
|
package: PackagesCategoryEnum.INFORMATIONS,
|
|
chartFrame: ChartFrameEnum.COMMON,
|
|
image
|
|
}
|