fix: 完成左侧列表的其余内容

This commit is contained in:
mtruning
2022-01-15 12:50:00 +08:00
parent ae71e13c6d
commit f6860c3fa6
70 changed files with 336 additions and 270 deletions
+3
View File
@@ -0,0 +1,3 @@
export enum ChatCategoryEnum {
table = '表格',
}
+3
View File
@@ -0,0 +1,3 @@
import { tableCommonConfig } from './tableCommon/index'
export const TableList = [tableCommonConfig]
@@ -0,0 +1,12 @@
import TableCommon from './index.vue'
import image from '@/assets/images/chart/Tables/tables.png'
import { ConfigType } from '@/packages/index.d'
import { ChatCategoryEnum } from '../index.d'
export const tableCommonConfig: ConfigType = {
key: 'Border',
title: '表格',
category: ChatCategoryEnum.table,
node: TableCommon,
image
}
@@ -0,0 +1,13 @@
<template>
<div>
表格
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
</style>