Vuetify 单选组按钮显示为 $ Radio symbol Circle

Vuetify radio group buttons appearing as $ Radio symbol Circle

我没有获得单选按钮选项。它显示一个奇怪的图像图标。

                                                          <v-flex> 
                                                            <v-radio-group v-model="radioGroup">
                                                                <v-radio
                                                                  v-for="(accountType, index) in accountTypes"
                                                                  :key= "accountType.key"
                                                                  :label="accountType.name"
                                                                  :value= "accountType.key"
                                                                >
                                                                </v-radio>
                                                            </v-radio-group>
                                                        </v-flex>

我更改了 vue.js 文件的版本,它加载正常。