Description
Vue's v-for directive has specific syntax that it uses in it's initializer.
<li v-for="item in items">
{{ item.message }}
</li>
The HTML parser currently treats what's in the quotes as a generic string. However, some lint rules (like valid-v-for) require inspecting the contents of this string for better analysis.
Description
Vue's
v-fordirective has specific syntax that it uses in it's initializer.The HTML parser currently treats what's in the quotes as a generic string. However, some lint rules (like
valid-v-for) require inspecting the contents of this string for better analysis.