vuetifyjs / vuetify

🐉 Vue Component Framework
https://vuetifyjs.com
MIT License
39.06k stars 6.91k forks source link

fix(VInput): add theme class #19602

Closed SonTT19 closed 1 week ago

SonTT19 commented 2 weeks ago

Description

fixes #19598

Markup:

<template>
  <v-app>
    <v-container>
      <v-text-field
        v-model="msg"
        :error-messages="['Error text']"
        theme="dark"
      />
    </v-container>
  </v-app>
</template>

<script setup>
  import { ref } from 'vue'

  const msg = ref('Hello World!')
</script>
KaelWD commented 2 weeks ago

Shouldn't this just be on VInput?