darrenfang / vuetify-datetime-picker

DatetimePicker component for Vuetify.js. https://darrenfang.github.io/vuetify-datetime-picker/
MIT License
175 stars 127 forks source link

prepend icon added. #18

Closed itarafath closed 5 years ago

samputer commented 2 years ago

@itarafath - sorry for commenting on an old PR, but do you remember why this was closed? It would be good to see this functionality added

samputer commented 2 years ago

Disregard above comment - for anyone else looking at this in the future, you can pass props through to the text-field in the following manner:

<v-datetime-picker
   :textFieldProps="datetimePickerProps"
>

and in your data object:

datetimePickerProps: {
        prependIcon: 'mdi-clock'
}

Thanks!