Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(VDateInput): create new component #19680

Merged
merged 10 commits into from
Apr 26, 2024
Prev Previous commit
Next Next commit
fix(VDateInput): only close menu if using hideActions after model select
  • Loading branch information
johnleider committed Apr 26, 2024
commit c1784c324331cab5ba637f26e62cd4edb4f619bc
4 changes: 2 additions & 2 deletions packages/vuetify/src/labs/VDateInput/VDateInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ export const VDateInput = genericComponent()({
proxyModel.value = val
} else {
model.value = val
}

if (!props.multiple) menu.value = false
if (!props.multiple) menu.value = false
}
}}
onMousedown={ (e: MouseEvent) => e.preventDefault() }
>
Expand Down
Loading