<template v-slot:label>
で定義する。
<v-radio-group> <v-radio :value="true"> <template v-slot:label> <div class="black--text">Black</div> </template> </v-radio> <v-radio :value="false"> <template v-slot:label> <div class="red--text">Red</div> </template> </v-radio> </v-radio-group>