mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
17 lines
561 B
TypeScript
17 lines
561 B
TypeScript
import TitlePro from './index.vue'
|
|
import Configuration from './config.vue'
|
|
import image from '@/assets/images/chart/informations/title_main.png'
|
|
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
|
|
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
|
|
|
|
export const TitleProConfig: ConfigType = {
|
|
key: 'VTitlePro',
|
|
title: '中心标题',
|
|
category: ChatCategoryEnum.TITLE,
|
|
categoryName: ChatCategoryEnumName.TITLE,
|
|
package: PackagesCategoryEnum.INFORMATION,
|
|
node: TitlePro,
|
|
conNode: () => Configuration,
|
|
image
|
|
}
|