Skip to content

Commit

Permalink
fix error display
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidFyon committed Nov 8, 2024
1 parent bdbf2ad commit b657004
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ export default defineComponent({
noCalendar: { type: Boolean, default: false },
outlined: { type: Boolean, default: false },
},
mounted() {
this.updateMessages()
},
computed: {
calendarDateFormat() {
// cf : https://vue3datepicker.com/props/formatting/#format
Expand Down Expand Up @@ -294,7 +297,11 @@ export default defineComponent({
@update:focused="
(e: boolean) => {
handleFocusChange(e)
e ? onFocus() : computedTextFieldValue.isValid() ? onBlur() : null
e
? onFocus()
: computedTextFieldValue.isValid()
? onBlur()
: null
}
"
@click:clear="onClear"
Expand Down

0 comments on commit b657004

Please sign in to comment.