Skip to content

Instantly share code, notes, and snippets.

View Akii's full-sized avatar
🚀
To the Moon

Akii

🚀
To the Moon
View GitHub Profile
@Akii
Akii / StarRating.vue
Created February 17, 2020 19:48
Probably accessible star rating component for Vue.
<template>
<div>
<span class="visually-hidden" :aria-hidden="!readonly">{{ starLabel(value) }}</span>
<span v-for="i in [1, 2, 3, 4, 5]" :key="i" :aria-hidden="readonly">
<label class="visually-hidden">
{{ starLabel(i) }}
<input
type="radio"