feat: 新增堆叠图

This commit is contained in:
奔跑的面条
2024-12-16 20:05:07 +08:00
parent 6106a8fc5c
commit f48ada2859
10 changed files with 180 additions and 21 deletions
@@ -0,0 +1,17 @@
<template>
<!-- vCharts 全局设置 -->
<VChartGlobalSetting :optionData="optionData"></VChartGlobalSetting>
</template>
<script setup lang="ts">
import { PropType, computed } from 'vue'
import { VChartGlobalSetting } from '@/components/Pages/VChartItemSetting'
import { vChartGlobalThemeJsonType } from '@/settings/vchartThemes/index'
defineProps({
optionData: {
type: Object as PropType<vChartGlobalThemeJsonType>,
required: true
}
})
</script>