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
Per the doc ( https://vuejs.org/v2/api/#v-for ), string iteration is supported, but I think it hasn't been implemented ( https://github.com/vuejs/vue/blob/dev/src/core/instance/render.js#L176 )
JSFiddle: http://jsfiddle.net/fenivana/5sH6A/969/
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="https://unpkg.com/vue/dist/vue.js"></script> </head> <body> <div id="app"> hello <span v-for="v in foo">{{v}}</span> </div> <script> new Vue({ data: { foo: 'foo' }, el: '#app' }) </script> </body> </html>
The text was updated successfully, but these errors were encountered:
Nice catch, I'll add it
Sorry, something went wrong.
Add missing string handler in v-for
4d29299
Fix vuejs#4497
Add missing string handler in v-for (#4499)
974247f
Fix #4497
posva
No branches or pull requests
Per the doc ( https://vuejs.org/v2/api/#v-for ), string iteration is supported, but I think it hasn't been implemented ( https://github.com/vuejs/vue/blob/dev/src/core/instance/render.js#L176 )
JSFiddle: http://jsfiddle.net/fenivana/5sH6A/969/
The text was updated successfully, but these errors were encountered: