feat: supply more chart types into vchart libs

This commit is contained in:
skie1997
2025-02-20 15:42:54 +08:00
parent 3b5e0fcdeb
commit 54b393b456
61 changed files with 4065 additions and 7 deletions
@@ -0,0 +1,17 @@
<template>
<!-- vCharts 全局设置 -->
<VChartGlobalSetting :optionData="optionData"></VChartGlobalSetting>
</template>
<script setup lang="ts">
import { PropType } from 'vue'
import { VChartGlobalSetting } from '@/components/Pages/VChartItemSetting'
import { vChartGlobalThemeJsonType } from '@/settings/vchartThemes/index'
defineProps({
optionData: {
type: Object as PropType<vChartGlobalThemeJsonType>,
required: true
}
})
</script>