In my VueJS project, I am utilizing Vuetify and have noticed that several components display text in uppercase. To override this, I need to add the class="text-none"
property to each component individually. Is there a way to apply this attribute globally to all components or specific ones?
Here are some examples of using the class property:
<v-tab class="text-none" key="meetingsListTab">Meetings</v-tab>
<v-btn @click="onClickBack" text class="text-none grey--text">
<span class="material-icons"> arrow_back </span> Back
</v-btn>
<v-btn
@click="onClickDeleteMeeting"
outlined
color="red lighten-1"
class="text-none mr-4">
Delete Meeting
</v-btn>