aboutsummaryrefslogtreecommitdiff
path: root/src/components/favorite_button/favorite_button.vue
blob: 0455c70603e3d0fe7520eb4ce4681737f328b5c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<template>
  <div>
    <i :class='classes' class='favorite-button fa' v-on:click.prevent='favorite()'></i>
    <span v-if='status.fave_num > 0'>{{status.fave_num}}</span>
  </div>
</template>

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

<style>
 .favorite-button {
     cursor: pointer
 }
</style>