1122
This commit is contained in:
44
cdTMP/src/components/ma-charts/index.vue
Normal file
44
cdTMP/src/components/ma-charts/index.vue
Normal file
@@ -0,0 +1,44 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user