2022-01-15 12:50:00 +08:00
|
|
|
import TableCommon from './index.vue'
|
|
|
|
import image from '@/assets/images/chart/Tables/tables.png'
|
|
|
|
import { ConfigType } from '@/packages/index.d'
|
2022-01-18 21:41:52 +08:00
|
|
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../index.d'
|
2022-01-15 12:50:00 +08:00
|
|
|
|
2022-01-15 21:05:11 +08:00
|
|
|
export const TableCommonConfig: ConfigType = {
|
2022-01-16 22:17:34 +08:00
|
|
|
key: 'VTableCommon',
|
2022-01-15 12:50:00 +08:00
|
|
|
title: '表格',
|
2022-01-18 21:41:52 +08:00
|
|
|
category: ChatCategoryEnum.TABLE,
|
|
|
|
categoryName: ChatCategoryEnumName.TABLE,
|
2022-01-15 12:50:00 +08:00
|
|
|
node: TableCommon,
|
|
|
|
image
|
|
|
|
}
|