-1👍
✅
Here’s how it can be made, and here is how it’s easy to display values for debugging purposes (it should be removed after finishing)
(p changed into list for visibility)
<template>
<div>
<!-- Frontend -->
<div>
<code>skill.frontend={{skill.frontend}}</code>
<h3>
Frontend
</h3>
<ul>
<li v-for="fe in skill.frontend">
{{fe.name}}
<br> li json={{ fe }}
</li>
</ul>
</div>
<!-- Backend -->
<div>
<code>skill.backend={{skill.backend}}</code>
<h3>
Backend
</h3>
<ul>
<li v-for="be in skill.backend">
{{be.name}}
<br> li json={{ be }}
</li>
</ul>
</div>
</div>
</template>
0👍
First, you have the data in the json file organized incorrectly (redid it).
Second, follow upl where you import components and other data from.
Third, your example has a bunch of mistakes in it, so I reworked it for you to look at and maybe have learned something useful for themselves.
Best regards! ✌️
Source:stackexchange.com