From 8f5f57381501c0c0e1f0dd6e5248cc7eed2e13da Mon Sep 17 00:00:00 2001 From: WangXiaolong Date: Sun, 30 Mar 2025 23:12:20 +0800 Subject: [PATCH] docs: correct template syntax (#1797) * Update getting-started.md Fix the incorrect Mustache syntax in the example * Update getting-started.md * Update getting-started.md --- docs/src/guide/getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/guide/getting-started.md b/docs/src/guide/getting-started.md index 9a1d1853..f4450c4f 100644 --- a/docs/src/guide/getting-started.md +++ b/docs/src/guide/getting-started.md @@ -219,7 +219,7 @@ const y = computed(() => `${Math.round(props.position.y)}px`)
{{ data.label }}
- {x} {y} + {{ x }} {{ y }}
@@ -418,7 +418,7 @@ const y = computed(() => `${Math.round(props.position.y)}px`)
{{ data.label }}
- {x} {y} + {{ x }} {{ y }}