-
-
Notifications
You must be signed in to change notification settings - Fork 7k
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
[Feature Request] Shadow DOM improvements for handling focus/active elements #17500
Comments
Do you think this issue would prevent a Script const promptInput = ref<HTMLElement | null>(null);
const userInput = ref("");
// Focus input
const focusInput = () => {
if (promptInput.value) {
promptInput.value.focus();
}
};
onMounted(focusInput); Template <v-textarea
ref="promptInput"
v-model.trim="userInput"
variant="outlined"
label="Type a message"
rows="1"
max-rows="8"
color="primary"
rounded
autofocus
auto-grow
></v-textarea> Related
Any insights on how to get a |
Not sure...
Hope this helps, cheers! |
Thank you!! |
I can confirm @Maxim-Mazurok 's patch fixed the problem with input type="date/time/datetime-local" for me. |
@KaelWD this wasn't solved, I believe, please reopen, thanks! |
@johnleider please reopen, cheers! |
Problem to solve
So far symptoms that we observed were:
The main idea behind this issue is to share fixes that worked for us.
Related to #17074
Proposed solution
The gist of the fix/issue:
vuetify+3.1.2.patch
:The text was updated successfully, but these errors were encountered: