aboutsummaryrefslogtreecommitdiff
path: root/src/components/favorite_button/favorite_button.vue
blob: 044e67965aebdf963f76a75bb43ce40a3a2e37f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<template>
  <div>
    <i :class='classes' class='favorite-button base09' @click.prevent='favorite()'/>
    <span v-if='status.fave_num > 0'>{{status.fave_num}}</span>
  </div>
</template>

<script src="./favorite_button.js" ></script>

<style lang='scss'>
  .favorite-button {
      cursor: pointer;
      animation-duration: 0.6s;
      &:hover {
        color: orange;
      }
  }
  .icon-star {
      color: orange;
  }

</style>