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.
This commit is contained in:
David Goedicke
2025-11-23 20:25:15 +01:00
committed by GitHub
parent 58498e8e02
commit 1b15e24bb3

View File

@@ -436,7 +436,7 @@ const props = defineProps<EdgeProps>()
const path = computed(() => getBezierPath(props))
</script>
<script>
<script lang="ts">
export default {
inheritAttrs: false,
}