LoginSignup
21
7

More than 3 years have passed since last update.

Vuetifyのv-btnのアルファベットが大文字になるのを抑制する

Posted at

課題

vuetifyで用意されているボタン、v-btnでボタン名がアルファベットの場合は、必ず大文字となります。

このようにv-btnSend Emailというボタン名にすると、以下の図のように大文字となります。
これをそのまま表示するようにしたい。

      <v-card class="mb-5 mt-5">
        <v-card-actions>
          <v-btn>Send Email</v-btn>
        </v-card-actions>
      </v-card>

2020-04-06_09h52_57.png

解決法

個別CSSのスタイルを適用する

style="text-transform: none"
      <v-card class="mb-5 mt-5">
        <v-card-actions>
          <v-btn style="text-transform: none">Send Email</v-btn>
        </v-card-actions>
      </v-card>

2020-04-06_09h54_50.png

参考URL

21
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
21
7