meta text vuetify checkbox code example
Example: vuetify change text color of radio button
<template>
<v-radio label="Radio 1" value="radio-1" class="black--text" />
</template>
<style scoped>
.black--text /deep/ label {
color: black;
}
</style>