feat: show tags on article page

This commit is contained in:
Sándor Levcsák 2020-10-23 05:04:08 +03:00
parent 44a3c37ea1
commit 65a62b6e18
1 changed files with 9 additions and 0 deletions

View File

@ -19,6 +19,15 @@
v-html="articleHandledBody"
/>
<!-- eslint-enable vue/no-v-html -->
<ul class="tag-list">
<li
v-for="tag in article.tagList"
:key="tag"
class="tag-default tag-pill tag-outline"
>
{{ tag }}
</li>
</ul>
</div>
<hr>