21 lines
361 B
Vue
Executable File
21 lines
361 B
Vue
Executable File
<template>
|
|
<div class="flex items-center text-gray-light">
|
|
<svg class="w-5 h-5 flex-shrink-0">
|
|
<use xlink:href="#message-circle"></use>
|
|
</svg>
|
|
<span v-show="comments" class="ml-2 text-sm">{{
|
|
comments
|
|
}}</span>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
components: {
|
|
|
|
},
|
|
props: {
|
|
comments: Number,
|
|
},
|
|
};
|
|
</script>
|