0π
β
In your AddInfo component template
<ul>
<li v-for "info in information" :key="info.id"> {{ info.text }} </li>
</ul>
v-for is missing the β=β sign. Should be:
<ul>
<li v-for="info in information" :key="info.id"> {{ info.text }} </li>
</ul>
Source:stackexchange.com