From Schema to Component
How to control your component through scheme properties
Vuetify Component Attribute - Schema Property
schema: {
name: {
type:'text',
backgroundColor:'red',
clearable:true
}
} <v-text-field background-color="red" clearable=true></v-text-field><v-text-field
label="Search"
hint="Books"
prepend-icon="search"
clearable
/>
</v-text-field>Last updated