Blame view

apps/components/widgets/widget-like.vue 315 Bytes
陈峰 authored
1
<template>
yyq authored
2
  <WidgetIconBtn type="star" :text="num" :article-id="articleId" :comment-id="commentId" :option="option"></WidgetIconBtn>
陈峰 authored
3 4 5 6
</template>

<script>
export default {
yyq authored
7 8
  name: 'WidgetLike',
  props: {
陈峰 authored
9
    num: [String, Number],
yyq authored
10 11
    articleId: Number,
    commentId: Number,
yyq authored
12 13
    option: Object
  }
陈峰 authored
14 15
};
</script>