Is there are simple way to change default value of props "outlined" for all "v-text-field" across entered project?
You could create a wrapper component and extends
from VTextField
(see treeshaking) and customise the default value(s).
import Vue from 'vue';
import { VTextField } from 'vuetify/lib';
Vue.component('TextFieldOutlined', {
extends: VTextField,
props: {
outlined: {
type: Boolean,
default: true
}
}
})
Using it like:
<text-field-outlined
label="Some label"
clearable
dense>
</text-field-outlined>
FWIW, extending a component means all base component's props are passed along and thus equally usable.