I have an angular component that I want to include in my page. everything works if I comment/remove bindings parameter in this component... Why?
(function () {
angular.module('app').component('detailsComponent1', {
templateUrl: '/RealSuiteApps/RealForm/-1/Details/Component1',
restrict: 'E',
bindings: {
value: "Component1"
},
controllerAs: 'cm',
controller: function () {
this.message = 'Hello from component1';
}
});
})();
If I want to use binding parameter, I get an error:
that links to: https://docs.angularjs.org/error/$compile/iscp?p0=detailsComponent1&p1=value&p2=Component1&p3=controller%20bindings%20definition
What does it mean ??
Thanks.

restrict: 'E',as well. Error is because ofvalue: "Component1"make it likevalue: @Component1orvalue: =Component1