[Vuejs]-How to add border around every tag in Vue.js

0👍

You need to loop through the item tags.


Replace

<p class="tags">{{ item.tags.toString() }}</p>

With

<p> <span class="tags" foreach="(tag, index) in  item.tags">  {{ tag.toString() }} </span></p>

Leave a comment