14 lines
415 B
TypeScript
14 lines
415 B
TypeScript
import TableCommon from './index.vue'
|
|
import image from '@/assets/images/chart/Tables/tables.png'
|
|
import { ConfigType } from '@/packages/index.d'
|
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../index.d'
|
|
|
|
export const TableCommonConfig: ConfigType = {
|
|
key: 'VTableCommon',
|
|
title: '表格',
|
|
category: ChatCategoryEnum.TABLE,
|
|
categoryName: ChatCategoryEnumName.TABLE,
|
|
node: TableCommon,
|
|
image
|
|
}
|