Skip to content

Commit 03c9b48

Browse files
committed
修复类型定义
1 parent 9c67895 commit 03c9b48

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/graph.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
import { onMounted, ref, watch } from "vue";
88
import { cloneDeep, throttle } from "lodash-es";
99
import type { FunctionPlotDatum } from "function-plot";
10-
import { Datum, findError } from "../consts";
10+
import { findError } from "../consts";
1111
const { data, width, height } = defineProps<{
12-
data: Datum[];
12+
data: FunctionPlotDatum[];
1313
width: number;
1414
height: number;
1515
}>();

0 commit comments

Comments
 (0)