Compare commits
No commits in common. "9ebafccc2fccbf645305b505a3cc91adb13c9499" and "9953d500e3f2aeea0927ff08527c4450a1dc5f2c" have entirely different histories.
9ebafccc2f
...
9953d500e3
|
@ -12,32 +12,26 @@ 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%",
|
||||
|
|
|
@ -14,12 +14,10 @@ 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,
|
||||
|
@ -28,7 +26,6 @@ const { categories, seriesData, titleP, legendList } = defineProps({
|
|||
type: String,
|
||||
default: "示例折线图",
|
||||
},
|
||||
// 图例
|
||||
legendList: {
|
||||
type: Array,
|
||||
required: true,
|
||||
|
|
|
@ -12,7 +12,6 @@ import { onMounted, ref } from "vue";
|
|||
const pieChartRef = ref(null);
|
||||
|
||||
const { titleP, dataP } = defineProps({
|
||||
// 图表数据
|
||||
dataP: {
|
||||
type: Array,
|
||||
default: () => [],
|
||||
|
|
Loading…
Reference in New Issue
Block a user