mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
- [X] Title and Author Position reversed - [X] Design & Format of Post-Date + Position - [X] No Category Names - [X] Actions/Reactions & Tags reversed
16 lines
186 B
Vue
16 lines
186 B
Vue
<template>
|
|
<ds-tag>
|
|
<ds-icon name="tag"/>
|
|
{{ name }}
|
|
</ds-tag>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'hc-tag',
|
|
props: {
|
|
name: { type: String }
|
|
}
|
|
}
|
|
</script>
|