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>
- [Vuejs]-How download pdf result without previewing and without changing page in nuxt project?
- [Vuejs]-Not displayed background image
Source:stackexchange.com