List Directives
Special directive for rendering a list of objects
v-for="{expression}"
{expression}: ("item of list", "(index, item) of list", "(key, value) of object")
An expression that creates a component for each item in a list and renders them all
The v-for
directive is used to render a list of objects. It effectively copies the element that hosts the directive, creates a component for each copy, passes an individual list item (and key
or index
) to that component, and tells them each to render. A v-component
directive can be used to specifcy a named component
that you would like to use for each list item.
The v-for
directive also tries to improve performance by caching elements/components as they are removed and reinserted into the list, and prevents rendering of these cached components so you don't need to worry about any null
or index out of bound issues while rendering.
vivere
GETTING STARTED
Introduction Concepts ExamplesDOCUMENTATION
Installation Components Data Directives Display Directives Event Directives List Directives