Последняя версия с сервера прошлого разработчика
This commit is contained in:
20
resources/js/Shared/Misc/ShareCount.vue
Executable file
20
resources/js/Shared/Misc/ShareCount.vue
Executable file
@@ -0,0 +1,20 @@
|
||||
<template>
|
||||
<div class="cursor-pointer flex items-center text-gray-light">
|
||||
<svg class="w-5 h-5 flex-shrink-0">
|
||||
<use xlink:href="#share"></use>
|
||||
</svg>
|
||||
<span v-show="shares" class="ml-2 text-sm">{{
|
||||
shares
|
||||
}}</span>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
components: {
|
||||
|
||||
},
|
||||
props: {
|
||||
shares: Number,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user