mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
14 lines
438 B
TypeScript
14 lines
438 B
TypeScript
import TableCategory from './index.vue'
|
|
import image from '@/assets/images/chart/Tables/tables_categary.png'
|
|
import { ConfigType } from '@/packages/index.d'
|
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../index.d'
|
|
|
|
export const TableCategoryConfig: ConfigType = {
|
|
key: 'VTableCategory',
|
|
title: '归类表格',
|
|
category: ChatCategoryEnum.TABLE,
|
|
categoryName: ChatCategoryEnumName.TABLE,
|
|
node: TableCategory,
|
|
image
|
|
}
|