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
+9-7Lines changed: 9 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,21 @@
1
1
blockincludes
2
2
include_util-fns
3
-
- var _on_Plunkr ='on Plunkr';
3
+
- var _on_Plunkr ='on Plunker';
4
4
5
5
:marked
6
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='.')
10
10
11
-
:marked
12
-
You can try this out without installing anything. Open the <live-example>QuickStart example !{_on_Plunkr}</live-example> in another tab
13
-
and follow along.
14
11
12
+
.l-sub-section
13
+
:marked
14
+
Try this **<live-example>QuickStart example !{_on_Plunkr}</live-example>** without installing anything.
15
+
Try it locally with the [***QuickStart seed***](guide/setup.html "Setup for local development with the QuickStart seed")
16
+
and prepare for development of a real Angular application.
17
+
18
+
:marked
15
19
Every component begins with an `@Component` [!{_decorator}](glossary.html#!{_decorator} '"!{_decorator}" explained')
16
20
<span if-docs="ts">function</span> that
17
21
<span if-docs="ts">takes a _metadata_ object. The metadata object</span> describes how the HTML template and component class work together.
@@ -39,7 +43,5 @@ block includes
39
43
:marked
40
44
### Next step
41
45
42
-
To learn how to write a real application, your next step is to set up a local development
43
-
environment and begin exploring with code. The [**Developer Guide**](guide/index.html)
0 commit comments