Member-only story
What’s new in Vue 3.2.40
The latest version of Vue, popular web framework was released on 28/9/2022 providing developers with bug fixes on the road to the 3.3 version.
Disabling button in a wrong way
The code illustrates a situation when the button should not been disabled because “false” in the attribute is actually a string rather than a boolean value . In the latest release of Vue it became fixed by checking the type of the attribute.
V-on does not throw errors
The code above and similar threw lately errors while they had to work properly. It was fixed as well.
Events are fired properly
The forementioned code didn’t cause onBlur to be called while it should be. A merge of dynamic and static v-on’s caused the bug to go away.