<script type="text/x-template" id="app-template">
<v-form class="form">
<v-text-field
label="hide-details 'auto'"
hide-details="auto"
error-messages="error-message"
outlined
></v-text-field>
<v-text-field
label="hide-details 'true'"
hide-details="true"
error-messages="error-message"
outlined
></v-text-field>
</v-form>
</script>
<div id="app"></div>
.form {
width: 500px;
margin: 10px;
}
.v-text-field__details {
background: gainsboro;
}
const App = {
template: "#app-template",
};
new Vue({
vuetify: new Vuetify(),
render: (h) => h(App)
}).$mount("#app");