-
-
Notifications
You must be signed in to change notification settings - Fork 8.5k
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
Clicking on checkbox with @click-handler that impacts other checkbox will not check the clicked checkbox #12144
Closed
Labels
Comments
Here comes another reproduction of the issue but with just one checkbox and <script setup>: Click on "Click me" checkbox. The time is updated, but the checkbox remains unchecked no matter how many times you click on it. It works correctly in 3.4.38, but stopped working in 3.5.0. |
a workaround secondClick() {
setTimeout(()=>{
this.first = false;
},0)
} |
abdullah-wn
pushed a commit
to Lazy-work/vue
that referenced
this issue
Jan 4, 2025
…n value is unchanged (vuejs#12146) close vuejs#12144
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
Vue version
3.5.11
Link to minimal reproduction
https://play.vuejs.org/#eNqVU8FOwzAM/ZUoJ5CgExpcSjcB05DgAIhxjIS61tuypUmUpGNo6r/jJOtW0DSJU20/+/nZTrf0XutkXQNNaeag0iJ3MGSSkEzkUxDBRIdLXTsSHULct4YBo8UCitVUbRhtgfVlpUoQiM24sY7R3o7gMbietnfgzaZmSALpkWb/6GWhULJkNMZb/K4QvFjt4ZH3vKBuziRWxrY7ZQhmvc4qMlsYrl0QBxutjCMlzPJaOLKNlWXu8rPz1iPEgKuNPPiEhG2kxJkaLg7RKCwls1xYaMNNNJpdXgVuoUqbku3v6TpDdVvjvhbcJqEfGUTm27/U/tNgNOvtR6MX1FlknPF5srRK4nMInLh4VWkuwLxqx5W0jKKUyMNoLoT6eg6xzmi7Yx2JLy3eL0XjzYAFswZG95jLzRzwxXh4PHmBDdp7EC9dC8w+Ab6DVaL2GmPaQy1LlN3JC2qfKn9BLucfdrxxIG07lBcaFhPyGcV/YnRi9IPcfnId6phscIufazCeExfYT26Sqyva/ABwFwqe
Steps to reproduce
Click on checkbox with text "Second".
What is expected?
That the "First" checkbox is unchecked and that the "Second" is checked.
What is actually happening?
The "First" checkbox is unchecked, but the "Second" checkbox is still unchecked.
System Info
Chrome 129.0.6668.89. Ubuntu 22.04.
Any additional comments?
It works correctly in 3.4.38. But it stopped working in 3.5.0 and is not working in 3.5.11.
The text was updated successfully, but these errors were encountered: