Vuejs using v-for with props from parent
Vuejs - When values do not show up using v-for:
Make sure to bind ":key" to a unique value.
The values should appear afterwards.
Very rough example below.
<ul class="examples">
<li class="example"
v-for="(ex, index) in this.$props.examples"
:key="index"
>
{{ ex.text }}
</li>
</ul>