Skip to content

Tag: angular

Multi-slot transclusion in Angular 6

I am trying to create a component with multi-slot transclusion in Angular 6, following this blog post (which is for Angular 2). I created a component: and then I am trying to use it like this But it throws a compile error: ERROR in : ‘level-icon’ is not a known element What am I missing here? I re…

Angular 5 ngHide ngShow [hidden] not working

Good day, guys! I am trying to make my Angular 5 app hide elements (or show hidden). However, this seems to not work. I’ve tried ngHide, ng-hide, ngShow, ng-show, [hidden] methods – none of them works. My login.component.ts looks like this: And login.component.html: Am I doing something wrong here…