-
-
Notifications
You must be signed in to change notification settings - Fork 324
docs: correct template syntax #1797
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Fix the incorrect Mustache syntax in the example
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
@wangxiaolong100 is attempting to deploy a commit to the Burak Cakmakoglu's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
Thanks for the PR 👍 |
docs/src/guide/getting-started.md
Outdated
@@ -418,7 +418,7 @@ const y = computed(() => `${Math.round(props.position.y)}px`) | |||
<div>{{ data.label }}</div> | |||
|
|||
<div> | |||
{x} {y} | |||
{{x}} {{y}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you update these to use proper spacing like {{ x }} {{ y }}
instead since that's the norm in Vue? :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Of course, I fixed the problem! 😊
🚀 What's changed?