fix: 新增组件

This commit is contained in:
mtruning
2022-01-15 14:56:48 +08:00
parent b7a372e50f
commit d2fabeae5f
25 changed files with 112 additions and 47 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import Bar from './Bar'
import Pie from './Pie'
import Bar from './Bars'
import Pie from './Pies'
export const ChartList = [...Bar, ...Pie]
+2 -2
View File
@@ -1,3 +1,3 @@
import Border from './borders'
import Borders from './Borders'
export const DecorateList = [...Border]
export const DecorateList = [...Borders]
@@ -1,7 +1,7 @@
import TextCommon from './index.vue'
import image from '@/assets/images/chart/informations/text_static.png'
import { ConfigType } from '@/packages/index.d'
import { ChatCategoryEnum } from '../index.d'
import { ChatCategoryEnum } from '../../index.d'
export const textCommonConfig: ConfigType = {
key: 'Text',
@@ -0,0 +1,3 @@
import { textCommonConfig } from './TextCommon/index'
export default [textCommonConfig]
+2 -2
View File
@@ -1,3 +1,3 @@
import { textCommonConfig } from './textCommon/index'
import Texts from './Texts'
export const InformationList = [textCommonConfig]
export const InformationList = [...Texts]