Angular 2 ‘component’ is not a known element
I’m trying to use a component I created inside the AppModule in other modules. I get the following error though: “Uncaught (in promise): … Read more
I’m trying to use a component I created inside the AppModule in other modules. I get the following error though: “Uncaught (in promise): … Read more
I have component in Angular 2 called my-comp: <my-comp></my-comp> How does one style the host element of this component in Angular 2? In … Read more
I have created a child component which has a method I want to invoke. When I invoke this method it only fires the … Read more
Is there any shortcut to rename a component with the Angular CLI other than manually editing all the component files such as folder … Read more
I’ve got a parent component: <parent></parent> And I want to populate this group with child components: <parent> <child></child> <child></child> <child></child> </parent> Parent template: … Read more
Does anybody know how to get hold of an element defined in a component template? Polymer makes it really easy with the $ … Read more
I have a number of elements that I want to be visible under certain conditions. In AngularJS I would write <div ng-show=”myVar”>stuff</div> How … Read more