Vuetify-module: I got a grey theme

Created on 8 Aug 2020  路  2Comments  路  Source: nuxt-community/vuetify-module

Module versions:
"@nuxtjs/vuetify": "^1.11.2",
"vuetify": "^2.3.8"

Describe the bug
I got a grey theme as default(looks like a disabled but it is not) and cant change it
image

To Reproduce

<div class="editorInput">
        <v-text-field
          v-model="textVal"
          label="锌械褉胁芯械 锌芯谢械"
        />
      </div>
      <div class="editorInput">
        <v-checkbox
          v-model="checkboxVal"
          label="Checkbox 1"
        ></v-checkbox>
      </div>
      <div class="editorInput">
        <v-radio-group v-model="radioVal">
          <v-radio
            v-for="n in 3"
            :key="n"
            :label="`Radio ${n}`"
            :value="n"
          ></v-radio>
        </v-radio-group>
      </div>
      <div class="editorInput">
        <v-switch v-model="switch1" :label="`Switch 1: ${switch1.toString()}`"></v-switch>
      </div>

Why that happen and how can I fix it?

Most helpful comment

Do you have the <v-app> in the layout? No colors will be applied if it is not there.

Thanks, it helped!

All 2 comments

Do you have the <v-app> in the layout? No colors will be applied if it is not there.

Do you have the <v-app> in the layout? No colors will be applied if it is not there.

Thanks, it helped!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

begueradj picture begueradj  路  3Comments

1000snowy picture 1000snowy  路  3Comments

Ghalnas picture Ghalnas  路  4Comments

jessielaf picture jessielaf  路  6Comments

stact picture stact  路  3Comments