Files
cdTestPlant3/cdTMP/src/components/ma-charts/index.vue

45 lines
839 B
Vue
Raw Normal View History

2023-06-08 21:09:28 +08:00
<template>
<v-charts v-if="renderChart" :option="options" :autoresize="autoresize" :style="{ width, height }" />
</template>
<script setup>
import { ref, computed, nextTick } from "vue"
import VCharts from "vue-echarts"
import { useAppStore } from "@/store"
const props = defineProps({
options: {
type: Object,
default() {
return {}
}
},
autoresize: {
type: Boolean,
default: true
},
width: {
type: String,
default: "100%"
},
height: {
type: String,
default: "100%"
}
})
const appStore = useAppStore()
let mode = computed(() => {
return appStore.mode === "dark" ? "dark" : "auto"
})
const renderChart = ref(false)
nextTick(() => {
renderChart.value = true
})
</script>
<style scoped lang="less"></style>