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

fix(VMenu): Prevent focus change during IME input #21008

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

babu-ch
Copy link
Contributor

@babu-ch babu-ch commented Feb 22, 2025

Description

fixes #21001

Markup:

<template>
  <v-app>
    <v-container>
      <v-autocomplete
        v-model="msg"
        placeholder="Type with IME input (my usecase is Vietnamese)"
        :items="['California', 'Colorado', 'Florida', 'Georgia', 'Texas', 'Wyoming']"
      />
    </v-container>
  </v-app>
</template>

<script setup>
  import { ref } from 'vue'

  const msg = ref()
</script>

@KaelWD
Copy link
Member

KaelWD commented Feb 26, 2025

Shouldn't this be on line 179 instead?

@babu-ch
Copy link
Contributor Author

babu-ch commented Feb 26, 2025

@KaelWD
Thank you for your review
That's right, so I fixed it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants