Compare commits

...

2 Commits

3 changed files with 10 additions and 0 deletions

View File

@ -12,26 +12,32 @@ import { onMounted, ref } from "vue";
const barChartRef = ref(null);
const { categories, seriesData, title, legendList } = defineProps({
//
categories: {
type: Array,
required: true,
},
//
seriesData: {
type: Array,
required: true,
},
//
title: {
type: String,
required: true,
},
//
legendList: {
type: Array,
required: true,
},
//
width: {
type: String,
default: "100%",
},
//
height: {
type: String,
default: "100%",

View File

@ -14,10 +14,12 @@ import { onMounted, ref } from "vue";
const lineChartRef = ref(null);
const { categories, seriesData, titleP, legendList } = defineProps({
//
categories: {
type: Array,
required: true,
},
//
seriesData: {
type: Array,
required: true,
@ -26,6 +28,7 @@ const { categories, seriesData, titleP, legendList } = defineProps({
type: String,
default: "示例折线图",
},
//
legendList: {
type: Array,
required: true,

View File

@ -12,6 +12,7 @@ import { onMounted, ref } from "vue";
const pieChartRef = ref(null);
const { titleP, dataP } = defineProps({
//
dataP: {
type: Array,
default: () => [],