2016-10-31 02:12:35 +11:00
|
|
|
<template>
|
|
|
|
<div>
|
2017-11-22 10:00:25 +11:00
|
|
|
<i :class='classes' class='favorite-button base09' @click.prevent='favorite()'/>
|
2016-10-31 02:12:35 +11:00
|
|
|
<span v-if='status.fave_num > 0'>{{status.fave_num}}</span>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./favorite_button.js" ></script>
|
|
|
|
|
2016-11-14 03:52:20 +11:00
|
|
|
<style lang='scss'>
|
|
|
|
.favorite-button {
|
|
|
|
cursor: pointer;
|
2017-03-09 15:45:40 +11:00
|
|
|
animation-duration: 0.6s;
|
2016-11-14 03:52:20 +11:00
|
|
|
&:hover {
|
2017-01-16 01:44:56 +11:00
|
|
|
color: orange;
|
2016-11-14 03:52:20 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.icon-star {
|
2017-01-16 01:44:56 +11:00
|
|
|
color: orange;
|
2016-11-14 03:52:20 +11:00
|
|
|
}
|
2017-03-09 15:45:40 +11:00
|
|
|
|
2016-10-31 02:12:35 +11:00
|
|
|
</style>
|