mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
20 lines
544 B
Vue
20 lines
544 B
Vue
<template>
|
|
<!-- vCharts 全局设置 -->
|
|
<VChartGlobalSetting :optionData="optionData"></VChartGlobalSetting>
|
|
<Axis :axis="optionData.xAxis"></Axis>
|
|
<Axis :axis="optionData.yAxis"></Axis>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { PropType } from 'vue'
|
|
import { VChartGlobalSetting, Axis } from '@/components/Pages/VChartItemSetting'
|
|
import { vChartGlobalThemeJsonType } from '@/settings/vchartThemes/index'
|
|
|
|
defineProps({
|
|
optionData: {
|
|
type: Object as PropType<vChartGlobalThemeJsonType>,
|
|
required: true
|
|
}
|
|
})
|
|
</script>
|