index.ts 348 B

123456789101112
  1. import TableCommon from './index.vue'
  2. import image from '@/assets/images/chart/Tables/tables.png'
  3. import { ConfigType } from '@/packages/index.d'
  4. import { ChatCategoryEnum } from '../index.d'
  5. export const TableCommonConfig: ConfigType = {
  6. key: 'TableCommon',
  7. title: '表格',
  8. category: ChatCategoryEnum.table,
  9. node: TableCommon,
  10. image
  11. }