-
-
Notifications
You must be signed in to change notification settings - Fork 33.9k
Closed
Description
Version
2.4.2
Reproduction link
https://jsfiddle.net/pi0/qnvcgujb
Steps to reproduce
This is working with 2.3 but not 2.4 anymore: (see provided fiddles)
<input v-model="value" is="textarea"/>What is expected?
This was the behavior of 2.3.x:
https://jsfiddle.net/pi0/yL4rwesh
What is actually happening?
When using :is="textarea" to dynamically change input type to a text area neither :value or v-model are not working anymore. (There is also a common case for both which <component :is="..." is not working)
Using dynamic components is a common usage for component libraries like BootrapVue which user can dynamically change elements behavior. here is the current implementation we are falling back to v-if/v-else as a fix, But is it an intentional breaking change?
zmkpr0