feat: show tags on article page
This commit is contained in:
parent
44a3c37ea1
commit
65a62b6e18
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue