zan-bar.vue 597 Bytes
<template>
  <div class="flex">
    <WidgetAvatarGroup :avatars="praiseHeadIco"></WidgetAvatarGroup>
    <span class="v-center">{{praiseCount}}人喜欢</span>
    <span class="time v-center text-right">{{publish_time | formatTime}}</span>
  </div>
</template>

<script>
export default {
  name: 'ZanBar',
  props: ['praiseHeadIco', 'praiseCount', 'publish_time'],
  filters: {
    formatTime(str) {
      return '1天前';
    }
  }
};
</script>

<style scoped>
.flex {
  display: flex;
}

.v-center {
  align-self: center;
}

.time {
  flex: 1;
}

.text-right {
  text-align: right;
}

</style>