You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -64,6 +64,7 @@
64
64
|56|[How to transfer components to custom elements?](#how-to-transfer-components-to-custom-elements)|
65
65
|57|[What are the mapping rules between Angular component and custom element?](#what-are-the-mapping-rules-between-angular-component-and-custom-element)|
66
66
|58|[How do you define typings for custom elements?](#how-do-you-define-typings-for-custom-elements)|
67
+
|59|[What are dynamic components?](#what-are-dynamic-components)|
67
68
68
69
1.### What is Angular Framework?
69
70
@@ -866,4 +867,6 @@
866
867
container.message = 'Welcome to Angular elements!';
867
868
container.message = true; // <-- ERROR: TypeScript knows this should be a string.
868
869
container.greet = 'News'; // <-- ERROR: TypeScript knows there is no `greet` property on `container`.
869
-
```
870
+
```
871
+
59. ### What are dynamic components?
872
+
Dynamic components are the components in which components location in the application is not defined at build time.i.e, They are not used in any angular template. But the component is instantiated and placed in the application at runtime.
0 commit comments