mirror of
https://gitee.com/dromara/go-view.git
synced 2026-05-12 00:00:01 +08:00
19 lines
475 B
Vue
19 lines
475 B
Vue
<template>
|
|
<!-- 图例 -->
|
|
<Legends :optionData="optionData"></Legends>
|
|
<Tooltip :optionData="optionData"></Tooltip>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { PropType } from 'vue'
|
|
import { vChartGlobalThemeJsonType } from '@/settings/vchartThemes/index'
|
|
import Legends from './Legends.vue'
|
|
import Tooltip from './Tooltip.vue'
|
|
const props = defineProps({
|
|
optionData: {
|
|
type: Object as PropType<vChartGlobalThemeJsonType>,
|
|
required: true
|
|
}
|
|
})
|
|
</script>
|