Vuetify has a lot of options for text field component. My idea is to create a custom text field component with some predefined options like an icon, flat, box etc. But I do not want to play with value property and input event in my custom component. Is there a way how to propagate a model of my custom text field to the Vuetify text field?
Next code does not work but I would like to have something similar
<template>
<v-text-field flat v-model="value" ></v-text-field>
</template>
<script>
export default {
props: ['value']
}
</script>