widget-like.vue
385 Bytes
<template>
<WidgetIconBtn type="star" :share="share" :text="num" :article-id="articleId" :comment-id="commentId" :option="option" :pos-id="posId"></WidgetIconBtn>
</template>
<script>
export default {
name: 'WidgetLike',
props: {
num: [String, Number],
articleId: Number,
commentId: Number,
posId: Number,
option: Object,
share: Boolean
}
};
</script>