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(VTextfield): Have consistent IME behaviour as in Vue #19397

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

yuwu9145
Copy link
Member

@yuwu9145 yuwu9145 commented Mar 14, 2024

Attempting to fix #18981

Vuetify v-text-field IME behaviour should be the same as it's in Vue

  • v-model doesn't update during composition session
  • has a new input event that allows users to respond to input changes during composition session

But it's against the purpose in #15907

@KaelWD @johnleider Do you agree with these changes? Or any comments?

Description

Markup:

<template>
  <v-app>
    <v-container>
      <v-text-field label="type chinese with IME" v-model="msg" />
      {{ msg }}
    </v-container>
  </v-app>
</template>

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

  const msg = ref('中文')
</script>

@johnleider johnleider added T: bug Functionality that does not work as intended/expected C: VTextField VTextField labels Mar 14, 2024
@johnleider johnleider self-requested a review March 14, 2024 13:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VTextField VTextField T: bug Functionality that does not work as intended/expected
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug Report][3.4.9] VTextField update during IME composition
2 participants