ListView

Basic

Banana
Apple
Raspberry
Orange
Peach
Strawberry
<vnt-listview>
  <vnt-listview-item v-for="fruit in fruits" :key="fruit">
    {{ fruit }}
  </vnt-listview-item>
</vnt-listview>

Selectable

Banana
Apple
Raspberry
Orange
Peach
Strawberry
<vnt-listview selectionMode="single">
  <vnt-listview-item v-for="fruit in fruits" :key="fruit" @pick="pickFruit">
    {{ fruit }}
  </vnt-listview-item>
</vnt-listview>