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
{{ message }}
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
Copy file name to clipboardExpand all lines: public/docs/ts/latest/quickstart.jade
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ block includes
3
3
- var _on_Plunkr ='on Plunkr';
4
4
5
5
:marked
6
-
Angular applications are made of _components_.
6
+
Angular applications are made up of _components_.
7
7
A _component_ is the combination of an HTML template and a component class that controls a portion of the screen. Here is an example of a component that displays a simple string:
8
8
9
9
+makeExample('app/app.component.ts')(format='.')
@@ -15,17 +15,17 @@ block includes
15
15
Every component begins with an `@Component` [!{_decorator}](glossary.html#!{_decorator} '"!{_decorator}" explained')
16
16
<span if-docs="ts">function</span> that
17
17
<span if-docs="ts">takes a _metadata_ object. The metadata object</span> describes how the HTML template and component class work together.
18
-
18
+
19
19
The `selector` property tells Angular to display the component inside a custom `<my-app>` tag in the `index.html`.
0 commit comments