17 lines
561 B
TypeScript
Raw Normal View History

2022-01-15 21:54:04 +08:00
import TitlePro from './index.vue'
2022-02-28 16:08:25 +08:00
import Configuration from './config.vue'
2022-01-15 21:54:04 +08:00
import image from '@/assets/images/chart/informations/title_main.png'
2022-01-25 11:09:32 +08:00
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d'
2022-01-15 21:54:04 +08:00
export const TitleProConfig: ConfigType = {
2022-01-16 22:17:34 +08:00
key: 'VTitlePro',
2022-01-15 21:54:04 +08:00
title: '中心标题',
category: ChatCategoryEnum.TITLE,
categoryName: ChatCategoryEnumName.TITLE,
2022-01-25 11:09:32 +08:00
package: PackagesCategoryEnum.INFORMATION,
2022-01-15 21:54:04 +08:00
node: TitlePro,
2022-02-28 16:08:25 +08:00
conNode: () => Configuration,
2022-01-15 21:54:04 +08:00
image
}