ng-compile-component
A simple AngularjS component for compiling components dynamically.
This component allows you to render components dynamically into your views, based on their name. To pass attributes you simply define an object with the properties required by the target-component's bindings. Check out the example below for getting started.
Install (npm)
npm i ng-compile-component
module.js
Include
ng-compile-component.js
Include
Add the dependency
angular;
Now you are ready to rumble!
Usage
<ng-compile-component component='=' bindings='='>
Attributes:
component
Contains the name of the target-component (i.e. "myFancyComponent" or "my-fancy-component")
bindings
An object which represents the bindings of the target-component.
Example
Inside of your component's controller:
thiscomponent = 'message-box';thisbindings = title: 'Hey' message: 'You wanna compile something?' buttons: no: true yes: true ;
Inside of your html:
This results in:
Define values inline: