2022-09-17 11:18:57 +08:00

18 lines
440 B
Vue

<template>
<!-- Echarts 全局设置 -->
<global-setting :optionData="optionData"></global-setting>
</template>
<script setup lang="ts">
import { PropType } from 'vue'
import { GlobalThemeJsonType } from '@/settings/chartThemes/index'
import { GlobalSetting } from '@/components/Pages/ChartItemSetting'
const props = defineProps({
optionData: {
type: Object as PropType<GlobalThemeJsonType>,
required: true
}
})
</script>