From 1b15e24bb3d9e3dcc2f6b0f45be875098a71df18 Mon Sep 17 00:00:00 2001 From: David Goedicke <2676840+DavidGoedicke@users.noreply.github.com> Date: Sun, 23 Nov 2025 20:25:15 +0100 Subject: [PATCH] fix(docs): add missing `ts` script type to getting started example (#1971) Update getting-started.md In the example `SpecialEdge.vue` file (TS), we missed the TypeScript language descriptor in the second script section. --- docs/src/guide/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/guide/getting-started.md b/docs/src/guide/getting-started.md index f4450c4f..6d372385 100644 --- a/docs/src/guide/getting-started.md +++ b/docs/src/guide/getting-started.md @@ -436,7 +436,7 @@ const props = defineProps() const path = computed(() => getBezierPath(props)) -