mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
16 lines
202 B
Vue
16 lines
202 B
Vue
<template>
|
|
<ds-tag>
|
|
<ds-icon name="tag" />
|
|
{{ name }}
|
|
</ds-tag>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'HcTag',
|
|
props: {
|
|
name: { type: String, required: true }
|
|
}
|
|
}
|
|
</script>
|