Skip to content

Instantly share code, notes, and snippets.

@Jantho1990
Created August 7, 2018 22:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jantho1990/0b21e54fda459c3c7ed5be4dcab8116d to your computer and use it in GitHub Desktop.
Save Jantho1990/0b21e54fda459c3c7ed5be4dcab8116d to your computer and use it in GitHub Desktop.
StarRating Vue -- 8b
<template>
<div class="rating-inputs">
<label for="rating">Rating</label>
<input
name="rating"
type="number"
v-model="rating_"
/>
</div>
</template>
<script>
export default {
// ...
data () {
return {
rating_: this.rating
}
},
// ...
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment