shlogg · Early preview
Connie Leung @railsstudent

Angular 20's CreateComponent Supports Two-way Binding.

Angular 20's createComponent function now supports two-way binding, input and output bindings, and directives. Test with Angular 20.0.0-next.3 by updating dependencies.

Angular 20's createComponent function will support two-way binding in addition to input and output bindings and directives. 
The feature is in 20.0.0-next.3; therefore, it can be tested after updating the Angular dependencies to the next version.

ng update @angular/cli --next
ng update @angular/core --next

    
    

    
    




This demo will show how to invoke the createComponent method to create a dynamic component displaying the information of Star Wars characters.  The dynamic component has a model input that will be bound to the signal of the App component. When users click the dynam...