We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be handy if we could destructure the target item of the iterated array, ie
{{#each Array.from(map.entries()) as [key, value]}} ... {{/each}}
Currently, this results in ParseError: Expected name. REPL.
ParseError: Expected name
Vue supports this in their v-for directives, so it might be possible to reference that to get hints on how to properly parse it.
The text was updated successfully, but these errors were encountered:
Recently I met this behavior too.
Sorry, something went wrong.
Add array destructuring for each contexts
5d27d3f
Fixes sveltejs#888
No branches or pull requests
It would be handy if we could destructure the target item of the iterated array, ie
Currently, this results in
ParseError: Expected name
. REPL.Vue supports this in their v-for directives, so it might be possible to reference that to get hints on how to properly parse it.
The text was updated successfully, but these errors were encountered: