[Vuejs]-How to apply style of selected radiobutton in Vuetify

3👍

Use the active-class

<template>
  <v-radio active-class="active" ...>
  ...
  </v-radio>
</template>

<style scoped>
.active .trucksicons {
  border: 2px solid green;
}
</style>
👤tauzN

Leave a comment