We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 415363b commit 97bd117Copy full SHA for 97bd117
src/guide/migration.md
@@ -221,6 +221,17 @@ You would now write:
221
</div>
222
{% endraw %}
223
224
+### `v-for` Range Values
225
+
226
+Previously, `v-for="number in 10"` would have `number` starting at 0 and ending at 9. Now it starts at 1 and ends at 10.
227
228
+{% raw %}
229
+<div class="upgrade-path">
230
+ <h4>Upgrade Path</h4>
231
+ <p>Search your codebase for the regex <code>/\w+ in \d+/</code>. Wherever it appears in a <code>v-for</code>, check to see if you may be affected.</p>
232
+</div>
233
+{% endraw %}
234
235
## Props
236
237
### `coerce` Prop Option <sup>deprecated</sup>
0 commit comments