mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
22 lines
552 B
Vue
22 lines
552 B
Vue
<template>
|
|
<global-setting :optionData="optionData"></global-setting>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { PropType, computed } from 'vue'
|
|
import { GlobalSetting } from '@/components/Pages/ChartItemSetting'
|
|
import { option } from './config'
|
|
import { GlobalThemeJsonType } from '@/settings/chartThemes/index'
|
|
|
|
const props = defineProps({
|
|
optionData: {
|
|
type: Object as PropType<typeof option & GlobalThemeJsonType>,
|
|
required: true
|
|
}
|
|
})
|
|
|
|
const heatMapConfig = computed<typeof option>(() => {
|
|
return props.optionData
|
|
})
|
|
</script>
|