feat:新增组件

This commit is contained in:
mtruning
2022-01-15 22:35:32 +08:00
parent 5843388d0b
commit fec6c6f23e
21 changed files with 191 additions and 5 deletions
@@ -0,0 +1,12 @@
import TreeMap from './index.vue'
import image from '@/assets/images/chart/charts/tree_map.png'
import { ConfigType } from '@/packages/index.d'
import { ChatCategoryEnum } from '../../index.d'
export const TreeMapConfig: ConfigType = {
key: 'TreeMap',
title: '树形分布',
category: ChatCategoryEnum.MORE,
node: TreeMap,
image: image
}
@@ -0,0 +1,13 @@
<template>
<div>
水波
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
</style>