Skip to content

Instantly share code, notes, and snippets.

View Jantho1990's full-sized avatar
💭
Game devvin'

Josh Anthony Jantho1990

💭
Game devvin'
View GitHub Profile
@Jantho1990
Jantho1990 / App.7b.vue
Created August 7, 2018 01:10
StarRating Vue -- 7b
<star-rating :rating="7"/>
@Jantho1990
Jantho1990 / StarRating.7a.vue
Created August 7, 2018 01:02
StarRating Vue -- 7a
<template>
<div class="star-rating">
<font-awesome-icon
class="star"
icon="star"
v-for="fs in fullStars"
:key="`fs${fs}`"
/>
<font-awesome-layers
@Jantho1990
Jantho1990 / StarRating.5d.vue
Last active August 7, 2018 00:38
StarRating Vue -- 5d
<font-awesome-layers
class="star"
v-for="hs in halfStars"
:key="`hs${hs}`"
>
<font-awesome-icon icon="star-half"/>
<font-awesome-icon
flip="horizontal"
:icon="['far', 'star-half']"
/>
@Jantho1990
Jantho1990 / ExampleComponent.vue
Last active June 29, 2018 03:02
StarRating Vue -- 5c
<template>
<div>
<h2>These are my children:</h2>
<ul>
<slot></slot>
</ul>
</div>
</template>
<script>
@Jantho1990
Jantho1990 / StarRating.5b.vue
Last active June 29, 2018 02:02
StarRating Vue -- 5b
<template>
<div class="star-rating">
<font-awesome-icon
class="star"
icon="star"
v-for="fs in fullStars"
:key="`fs${fs}`"
/>
<font-awesome-layers
@Jantho1990
Jantho1990 / StarRating.5a.vue
Last active June 29, 2018 00:37
StarRating Vue -- 5a
<template>
<div class="star-rating">
<font-awesome-icon
class="star"
icon="star"
v-for="(fs, i) in fullStars"
:key="`fs${i}`"
/>
</div>
</template>
@Jantho1990
Jantho1990 / StarRating.4a.vue
Created June 29, 2018 00:17
StarRating Vue -- 4a
<script>
export default {
// ...
computed: {
fullStars () {
let { rating, starRatio } = this
return Math.floor(rating / starRatio)
},
halfStars () {
let { rating, starRatio } = this
@Jantho1990
Jantho1990 / App.3d.vue
Created June 28, 2018 23:49
StarRating Vue -- 3d
<template>
<div id="app">
<img src="./assets/logo.png">
<star-rating/>
</div>
</template>
<script>
import StarRating from './components/StarRating'
// ...
@Jantho1990
Jantho1990 / StarRating.3c.vue
Created June 28, 2018 23:23
StarRating Vue -- 3c
<template>
<div class="star-rating">
<font-awesome-icon class="star" icon="star"/>
</div>
</template>
@Jantho1990
Jantho1990 / StarRating.3b.vue
Last active June 19, 2018 02:05
StarRating Vue -- 3b
<script>
import {
FontAwesomeIcon,
FontAwesomeLayers
} from '@fortawesome/vue-fontawesome'
export default {
name: "StarRating",
components: {
FontAwesomeIcon,