fix: 新增组件

This commit is contained in:
mtruning
2022-01-15 14:56:48 +08:00
parent f6860c3fa6
commit 3758db4cb6
25 changed files with 112 additions and 47 deletions
@@ -0,0 +1,12 @@
import barCommon from './index.vue'
import image from '@/assets/images/chart/charts/bar_x.png'
import { ConfigType } from '@/packages/index.d'
import { ChatCategoryEnum } from '../../index.d'
export const barCommonConfig: ConfigType = {
key: 'BarCommon',
title: '基础',
category: ChatCategoryEnum.BAR,
node: barCommon,
image: image
}
@@ -0,0 +1,13 @@
<template>
<div>
柱状图组件渲染
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
</style>