All the component creation APIs outside $A.createComponent
are deprecated.
The following pattern is considered an error:
$A.newCmp('ui:button');
Example of correct code:
$A.createComponent('ui:button', params, callback);
All the component creation APIs outside $A.createComponent
are deprecated.
The following pattern is considered an error:
$A.newCmp('ui:button');
Example of correct code:
$A.createComponent('ui:button', params, callback);